Skip to content

Commit aa0cdb1

Browse files
committed
Abandon FX2D for present
1 parent 2e0021f commit aa0cdb1

File tree

20 files changed

+20
-20
lines changed

20 files changed

+20
-20
lines changed

contributed/circle_collision.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,5 +109,5 @@ def draw
109109
end
110110

111111
def settings
112-
size 640, 360, FX2D
112+
size 640, 360, P2D
113113
end

contributed/grapher.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ def dot(px, py, c)
3535
end
3636

3737
def settings
38-
size 600, 600, FX2D
38+
size 600, 600, P2D
3939
end

contributed/gravity.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,6 @@ def angle_of(x1, y1, x2, y2)
111111
end
112112

113113
def settings
114-
size 600, 500, FX2D
114+
size 600, 500, P2D
115115
smooth 4
116116
end

external_library/java/gicentreUtils/easing.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545
# Initialises the window in which animated discs and graph are shown.
4646
def settings
47-
size(900, 300, FX2D)
47+
size(900, 300, P2D)
4848
end
4949

5050
def setup

external_library/java/handy/preset_style_demo.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def settings
3636
# Should work with all Processing 3 renderers.
3737
# size(1200, 800, P2D)
3838
# size(1200, 800, P3D)
39-
# size(1200, 800, FX2D)
39+
# size(1200, 800, P2D)
4040
pixelDensity(displayDensity) # Use platform's maximum display density.
4141
end
4242

external_library/java/handy/preset_styles.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def settings
1212
size(1200, 800)
1313
# size(1200, 800, P2D)
1414
# size(1200, 800, P3D)
15-
# size(1200, 800, FX2D)
15+
# size(1200, 800, P2D)
1616
end
1717

1818
def setup

processing_app/basics/arrays/array_objects.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def draw
2020
end
2121

2222
def settings
23-
size 640, 360, FX2D
23+
size 640, 360, P2D
2424
end
2525

2626
module Runnable

processing_app/basics/arrays/custom_array.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def draw
2020
end
2121

2222
def settings
23-
size 640, 360, FX2D
23+
size 640, 360, P2D
2424
end
2525

2626
# The Particle object

processing_app/basics/color/blend_color.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ def draw
2222
end
2323

2424
def settings
25-
size 100, 100, FX2D
25+
size 100, 100, P2D
2626
end

processing_app/basics/color/color_wheel.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,5 +89,5 @@ def mouse_pressed
8989
end
9090

9191
def settings
92-
size 640, 360, FX2D
92+
size 640, 360, P2D
9393
end

0 commit comments

Comments
 (0)