(defn blend
""
([^PApplet sketch sx1 sy1 sx2 sy2 dx1 dy1 dx2 dy2 mode]
(.blend sketch (int sx1) (int sy1) (int sx2) (int sy2)
(int dx1) (int dy1) (int dx2) (int dy2)
(int mode)))
([^PApplet sketch ^PImage src sx1 sy1 sx2 sy2 dx1 dy1 dx2 dy2 mode]
(.blend sketch src (int sx1) (int sy1) (int sx2) (int sy2)
(int dx1) (int dy1) (int dx2) (int dy2)
(int mode))))
Comments top
No comments for blend. Log in to add a comment.