Lines Matching refs:arc
358 ## arc section
360 arc(x: number, y: number, radius: number, startAngle: number, endAngle: number, counterclockwise?: …
362 Draws an arc on the canvas.
374 | x | number | Yes | 0 | X coordinate of the center point of the arc.<br>Defa…
375 | y | number | Yes | 0 | Y coordinate of the center point of the arc.<br>Defa…
376 | radius | number | Yes | 0 | Radius of the arc.<br>Default unit: vp |
377 | startAngle | number | Yes | 0 | Start radian of the arc. |
378 | endAngle | number | Yes | 0 | End radian of the arc. |
379 | counterclockwise | boolean | No | false | Whether to draw the arc counterclockwise. |
399 this.path2Db.arc(100, 75, 50, 0, 6.28)
416 Draws an arc based on the radius and points on the arc.
428 | x1 | number | Yes | 0 | X coordinate of the first point on the arc.<br>Default unit: vp |
429 | y1 | number | Yes | 0 | Y coordinate of the first point on the arc.<br>Default unit: vp |
430 | x2 | number | Yes | 0 | X coordinate of the second point on the arc.<br>Default unit: vp…
431 | y2 | number | Yes | 0 | Y coordinate of the second point on the arc.<br>Default unit: vp…
432 | radius | number | Yes | 0 | Radius of the arc.<br>Default unit: vp |