Skip to content

circle

circle() 方法创建圆形。

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

实例

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

circle.png


返回 Graphics 组件参考