(defn emissive
""
([^PApplet sketch gray]
(if (integer? gray)
(.emissive sketch (int gray))
(.emissive sketch (float gray))))
([^PApplet sketch x y z]
(if (or (integer? x) (integer? y) (integer? z))
(.emissive sketch (int x) (int y) (int z))
(.emissive sketch (float x) (float y) (float z)))))
Comments top
No comments for emissive. Log in to add a comment.