(defn text
""
([^PApplet sketch s]
(.text sketch s))
([^PApplet sketch s x y]
(.text sketch s (float x) (float y)))
([^PApplet sketch s x y z]
(.text sketch s (float x) (float y) (float z)))
([^PApplet sketch s x1 y1 x2 y2]
(.text sketch s (float x1) (float y1) (float x2) (float y2)))
([^PApplet sketch s x1 y1 x2 y2 z]
(.text sketch s (float x1) (float y1) (float x2) (float y2) (float z))))
Comments top
No comments for text. Log in to add a comment.