Skip to content

Commit 1725e57

Browse files
committed
remove FX2D
1 parent e2df9bb commit 1725e57

File tree

22 files changed

+23
-23
lines changed

22 files changed

+23
-23
lines changed

advanced_data/library/bubble/bubble.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22
# The bubble library, include BubbleStruct
33
class Bubble
4-
include Propane::Proxy
4+
include Processing::Proxy
55

66
attr_reader :x, :y, :diameter, :name, :over
77

advanced_data/library/word/word.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# source and frequency
77
########
88
class Word
9-
include Propane::Proxy
9+
include Processing::Proxy
1010
# Store a count for occurences in two different books
1111
attr_reader :count_dracula, :count_franken, :total_count
1212
attr_reader :word, :position, :width, :height, :speed

advanced_data/load_save_json.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def draw
2525
end
2626

2727
def settings
28-
size 640, 360, FX2D
28+
size 640, 360
2929
end
3030

3131
def mouse_pressed

advanced_data/load_save_table.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def run
8585

8686
# Enumerable class holds bubble data
8787
class BubbleData
88-
include Propane::Proxy
88+
include Processing::Proxy
8989
extend Forwardable
9090
def_delegators(:@bubbles, :each, :<<, :size, :shift)
9191
include Enumerable, Runnable

basics/arrays/array_objects.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def draw
2424
end
2525

2626
def settings
27-
size 640, 360, FX2D
27+
size 640, 360
2828
end
2929

3030
module Runnable

basics/arrays/custom_array.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def draw
2424
end
2525

2626
def settings
27-
size 640, 360, FX2D
27+
size 640, 360
2828
end
2929

3030
# The Particle object

basics/color/blend_color.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def draw
2525
end
2626

2727
def settings
28-
size 100, 100, FX2D
28+
size 100, 100
2929
end
3030
end
3131

basics/color/color_wheel.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def mouse_pressed
9393
end
9494

9595
def settings
96-
size 640, 360, FX2D
96+
size 640, 360
9797
end
9898
end
9999

basics/color/saturation.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def draw
2626
end
2727

2828
def settings
29-
size 640, 360, FX2D
29+
size 640, 360
3030
end
3131
end
3232

basics/typography/words.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def settings
1010
def setup
1111
sketch_title 'Words'
1212
@x = 30
13-
Propane::PFont.list.each { |fnt| puts fnt }
13+
Processing::PFont.list.each { |fnt| puts fnt }
1414
@font = create_font('Georgia', 24)
1515
text_font @font, 32
1616
no_loop

0 commit comments

Comments
 (0)