(defn ambient-light
""
([sketch red green blue]
(.ambientLight sketch (float red) (float green) (float blue)))
([sketch red green blue x y z]
(.ambientLight sketch (float red) (float green) (float blue) (float x) (float y) (float z))))
Comments top
No comments for ambient-light. Log in to add a comment.