@@ -930,6 +930,7 @@ class PGraphics : public PImage {
930930 void ellipse (float x, float y, float w, float h);
931931 void rect (float x, float y, float w, float h);
932932 void rect (float x, float y, float w, float h, float r);
933+ void rect (float x, float y, float w, float h, float tl, float tr, float br, float bl);
933934 void line (float x1, float y1, float x2, float y2);
934935 void point (float x, float y);
935936 void triangle (float x1,float y1,float x2,float y2,float x3,float y3);
@@ -4107,6 +4108,7 @@ struct PApplet {
41074108 void circle (float cx, float cy, float d);
41084109 void rect (float x, float y, float w, float h);
41094110 void rect (float x, float y, float w, float h, float r);
4111+ void rect (float x, float y, float w, float h, float tl, float tr, float br, float bl);
41104112 void square (float x, float y, float s);
41114113 void triangle (float x1, float y1, float x2, float y2, float x3, float y3);
41124114 void quad (float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4);
0 commit comments