Closed
Description
First, let me say that I don't really know what I'm talking about here. But I noticed today that if you use a call to curveVertex()
within beginShape()
and endShape()
, all the vertices turn into "curved" ones, rather than just an individual vertex, i.e.
I know there are other aspects at play here in terms of how curveVertex()
works, but I'm not sure if the above result is correct?
fill(255);
beginShape();
vertex(30, 10);
curveVertex(85, 20);
vertex(83, 75);
vertex(30, 92);
vertex(50,50);
endShape(CLOSE);