Skip to content

ellipse

ellipse() 方法创建椭圆。

参数描述
cx圆的中心的 x 坐标。
cy圆的中心的 y 坐标。
rx圆的 x 半径。
ry圆的 y 半径。

实例

ts
const ctx = node.getComponent(Graphics);
ctx.ellipse(200,100, 200,100);
ctx.stroke();

ellipse.png


返回 Graphics 组件参考