Skip to content

Commit 5e08393

Browse files
committed
adjust size
1 parent 24d9dae commit 5e08393

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

basics/modules/module_two.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def recalculate_shape
9090
end
9191

9292
def settings
93-
size 1024, 768, P3D
93+
size 1024, 750, P3D
9494
end
9595
end
9696

demo/drawolver.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def recalculate_shape
8989
end
9090

9191
def settings
92-
size 1024, 768, P3D
92+
size 1024, 750, P3D
9393
end
9494
end
9595

demo/elegant_ball.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
class ElegantBall < Processing::App
1010

1111
def settings
12-
size(800, 800, P3D)
12+
size(750, 750, P3D)
1313
end
1414

1515
def setup

demo/fibonacci_sphere.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class FibonacciSphere < Processing::App
1818
attr_reader :pts, :rotation_x, :rotation_y, :nbr_points, :radius, :add_points
1919

2020
def settings
21-
size(1024, 768, P3D)
21+
size(1024, 750, P3D)
2222
end
2323

2424
def setup

demo/flight_patterns.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class FlightPatterns < Processing::App
1313
attr_reader :flee, :radius
1414

1515
def settings
16-
size 1024, 768, P3D
16+
size 1024, 750, P3D
1717
end
1818

1919
def setup

gems/toxiclibs/color_utils/color_theme.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class ToxicLibsColorTheme < Processing::App
1313
attr_reader :show_discs
1414

1515
def settings
16-
size(1024, 768)
16+
size(1024, 750)
1717
# smooth
1818
end
1919

library/vecmath/vec2d/circumcircle_sketch.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class CircumcircleSketch < Processing::App
2525
attr_reader :point, :font, :points, :circle, :center
2626

2727
def settings
28-
size 800, 800
28+
size 750, 750
2929
# pixel_density(2) # for HiDpi screens
3030
# smooth see https://processing.org/reference/smooth_.html
3131
end

library/vecmath/vec3d/drawolver.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def recalculate_shape
9292
end
9393

9494
def settings
95-
size 1024, 768, P3D
95+
size 1024, 750, P3D
9696
end
9797
end
9898

library/vecmath/vec3d/frame_of_reference.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class FrameOfReference < Processing::App
1717

1818

1919
def settings
20-
size(800, 800, P3D)
20+
size(750, 750, P3D)
2121
end
2222

2323
def setup

library/vecmath/vec3d/hilbert_fractal.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def define_lights
4141
end
4242

4343
def settings
44-
size 1024, 768, P3D
44+
size 1024, 750, P3D
4545
end
4646
end
4747

library/vector_utils/lat_lon.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def draw
4949
end
5050

5151
def settings
52-
size(800, 800, P3D)
52+
size(750, 750, P3D)
5353
end
5454
end
5555

0 commit comments

Comments
 (0)