Skip to content

Commit f134340

Browse files
committed
Fix: add nine-arg image() declaration to PApplet class
1 parent 8f4419d commit f134340

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/Processing.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4143,6 +4143,7 @@ struct PApplet {
41434143
void imageMode(int mode);
41444144
void image(PImage* img, float x, float y);
41454145
void image(PImage* img, float x, float y, float w, float h);
4146+
void image(PImage* img, float dx1,float dy1,float dx2,float dy2,float sx1,float sy1,float sx2,float sy2);
41464147
void image(const PImage& img, float x, float y);
41474148
void image(const PImage& img, float x, float y, float w, float h);
41484149
void image(const PImage* img, float x, float y) { if(img) image(*img,x,y); }

0 commit comments

Comments
 (0)