Flash / Flex / ActionScript/Graphics/drawRoundRectComplex — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 08:15, 26 мая 2010
Draw Round Rectangle Complex
package{
import flash.display.*;
public class Main extends Sprite{
public function Main(){
var shape:Shape = new Shape();
addChild(shape);
shape.graphics.beginFill(0x000000, 1);
shape.graphics.drawRoundRectComplex(0, 0, 300, 300, 100, 0, 0, 0);
shape.graphics.endFill();
}
}
}