假设我使用 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?