(defn bezier-vertex
""
([^PApplet sketch x2 y2 x3 y3 x4 y4]
(.bezierVertex sketch
(float x2) (float y2)
(float x3) (float y3)
(float x4) (float y4)))
([^PApplet sketch x1 y1 z1 x2 y2 z2 x3 y3 z3 x4 y4 z4]
(.bezierVertex sketch
(float x2) (float y2) (float z2)
(float x3) (float y3) (float z3)
(float x4) (float y4) (float z4))))
Comments top
No comments for bezier-vertex. Log in to add a comment.