How to draw a rectangle?
I could draw a Circle, by calling graphics.drawCircle
but how can I draw a Rectangle??
graphics.drawCircleを使って円を描くことはできたけど
どうやったら四角形を描けるの??
// I could draw a Circle, by calling graphics.drawCircle
// but how can I draw a Rectangle??
//
// graphics.drawCircleを使って円を描くことはできたけど
// どうやったら四角形を描けるの??
//
package {
import flash.display.*;
public class FlashTest extends Sprite {
public function FlashTest() {
graphics.beginFill(0xFF0000);
// draw a circle ok
graphics.drawCircle( 100, 100, 100 );
}
}
}
//
// !! don't answer this question, this is just for an example !!
// !! この質問には答えないでください、これは例です。 !!
//