summaryrefslogtreecommitdiff
path: root/MeshSketch.hs
diff options
context:
space:
mode:
authorJoe Crayne <joe@jerkface.net>2019-05-26 00:59:50 -0400
committerJoe Crayne <joe@jerkface.net>2019-05-26 00:59:50 -0400
commit8e735080a3f45a90f9952f1ff883260b1230fdf1 (patch)
tree3749f150caf6f3e1822a252e6c173aa9bd7e80a5 /MeshSketch.hs
parent1595a9ea3ca1080ebf7d060ea28aecf19df8f968 (diff)
Render curve points as line strips rather than points.
Diffstat (limited to 'MeshSketch.hs')
-rw-r--r--MeshSketch.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MeshSketch.hs b/MeshSketch.hs
index 6475d27..d598bbd 100644
--- a/MeshSketch.hs
+++ b/MeshSketch.hs
@@ -330,7 +330,7 @@ new = do
330 "uvw" @: Attribute_V3F 330 "uvw" @: Attribute_V3F
331 defObjectArray "plane" Triangles $ do 331 defObjectArray "plane" Triangles $ do
332 "position" @: Attribute_V4F 332 "position" @: Attribute_V4F
333 defObjectArray "Points" Points $ do 333 defObjectArray "Points" Lines $ do
334 "position" @: Attribute_V3F 334 "position" @: Attribute_V3F
335 "color" @: Attribute_V3F 335 "color" @: Attribute_V3F
336 defUniforms $ do 336 defUniforms $ do