Lines Matching refs:ellipse
465 ## ellipse section
467 ellipse(x: number, y: number, radiusX: number, radiusY: number, rotation: number, startAngle: numbe…
469 Draws an ellipse in the specified rectangular region on the canvas.
481 | x | number | Yes | 0 | X coordinate of the ellipse center.<br>Default unit:…
482 | y | number | Yes | 0 | Y coordinate of the ellipse center.<br>Default unit:…
483 | radiusX | number | Yes | 0 | Radius of the ellipse on the x-axis.<br>Default unit…
484 | radiusY | number | Yes | 0 | Radius of the ellipse on the y-axis.<br>Default unit…
485 | rotation | number | Yes | 0 | Rotation angle of the ellipse.<br>Unit: radian …
486 | startAngle | number | Yes | 0 | Angle of the start point for drawing the ellipse, in…
487 | endAngle | number | Yes | 0 | Angle of the end point for drawing the ellipse, in r…
488 …e | Whether to draw the ellipse counterclockwise.<br>**true**: Draw the ellipse counterclockwise.<…
508 this.path2Db.ellipse(200, 200, 50, 100, 0, Math.PI * 1, Math.PI*2)