Skip to content

Commit f72980c

Browse files
committed
Remove all duplicate PShape.params fields
1 parent fcfdaa2 commit f72980c

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

src/Processing.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3438,7 +3438,6 @@ class PShape {
34383438
void beginShape(int k=-1) { kind=k; verts.clear(); }
34393439
void endShape(bool close=false) { closed=close; }
34403440
::std::vector<float> params; // for primitive shapes (ELLIPSE, RECT, etc.)
3441-
::std::vector<float> params; // for primitive shapes (ELLIPSE, RECT, etc.)
34423441
void vertex(float x,float y,float z=0,float u=0,float v=0) { verts.push_back({x,y,z,u,v}); }
34433442
void addChild(const PShape& s) { children.push_back(s); }
34443443
void addChild(const PShape* s) { if (s) addChild(*s); }

0 commit comments

Comments
 (0)