Skip to content

Commit fcfdaa2

Browse files
committed
Remove duplicate PShape.params field
1 parent aa47697 commit fcfdaa2

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
@@ -3439,7 +3439,6 @@ class PShape {
34393439
void endShape(bool close=false) { closed=close; }
34403440
::std::vector<float> params; // for primitive shapes (ELLIPSE, RECT, etc.)
34413441
::std::vector<float> params; // for primitive shapes (ELLIPSE, RECT, etc.)
3442-
::std::vector<float> params; // for primitive shapes (ELLIPSE, RECT, etc.)
34433442
void vertex(float x,float y,float z=0,float u=0,float v=0) { verts.push_back({x,y,z,u,v}); }
34443443
void addChild(const PShape& s) { children.push_back(s); }
34453444
void addChild(const PShape* s) { if (s) addChild(*s); }

0 commit comments

Comments
 (0)