Skip to content

moveTo

moveTo 表示一条路径的起点。

参数描述
x路径的目标位置的 x 坐标
y路径的目标位置的 y 坐标

实例

ts
const ctx = node.getComponent(Graphics);
ctx.moveTo(0,0);
ctx.lineTo(300,150);
ctx.stroke();

moveTo.png


返回 Graphics 组件参考