bezierPoint of bezierVertex curve
in
Programming Questions
•
1 year ago
Is it possible to get bezierPoints on a curve like this?
- beginShape();
- vertex(61.0, 189.0);
- bezierVertex(61.0, 189.0, 196.0, 63.0, 237.0, 162.0);
- bezierVertex(278.0, 261.0, 287.0, 272.0, 340.0, 246.0);
- endShape();
1