Skip to content

Commit bf1f901

Browse files
committed
No need for close
1 parent 10e7690 commit bf1f901

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

library/vecmath/vec3d/terrain.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
require 'picrate'
33

44
class Terrain < Processing::App
5-
WIDTH = 1400
6-
HEIGHT = 1100
5+
WIDTH = 1_400
6+
HEIGHT = 1_100
77
SCL = 30
88
attr_reader :terrain, :rows, :columns, :mover
99

@@ -41,7 +41,7 @@ def draw
4141
terrain[hash_key(x, y)].to_vertex(renderer)
4242
terrain[hash_key(x, y.succ)].to_vertex(renderer)
4343
end
44-
end_shape(CLOSE)
44+
end_shape
4545
end
4646
end
4747

0 commit comments

Comments
 (0)