1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-08-18 14:31:24 +02:00

graphics-api docs

This commit is contained in:
Pomax
2020-09-19 12:29:43 -07:00
parent 7bf5a223bf
commit 7c530fee56
31 changed files with 420 additions and 103 deletions

View File

@@ -25,7 +25,7 @@ draw() {
noStroke();
setFill(`rgba(100,255,100,0.4)`);
let a = this.angle;
arc(w/2, h/2, r, a < 0 ? a : 0, a < 0 ? 0 : a, w/2, h/2);
wedge(w/2, h/2, r, a < 0 ? a : 0, a < 0 ? 0 : a);
curve.drawSkeleton();
curve.drawCurve();