假设我使用Shape.graphics的moveTo()和lineTo()方法绘制了一条带有多条边的线。我可以稍后修改其中一个边缘吗?例如:
var line:Shape = new Shape();
line.graphics.lineStyle(2, 0x000000, .75);
line.graphics.moveTo(10,10);
line.graphics.lineTo(50,50); // Can I modify coordinates of the edge created on this line?
感谢。
答案 0 :(得分:1)