In case Flash no longer exists; a copy of this site is included in the Flashpoint archive's "ultimate" collection.

Dead Code Preservation :: Archived AS3 works from wonderfl.net

三角形, 四角形を描く

三つまたは四つの頂点の座標を指定して,三角形および四角形を描くサンプルです.
/**
 * Copyright shmdmoto ( http://wonderfl.net/user/shmdmoto )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/jtjW
 */

package 
{
    import frocessing.display.F5MovieClip2D;
    /**
     * 三角形,四角形を描く
     * @author shmdmoto
     */
    public class GraphicExample extends F5MovieClip2D
    {
        public function setup() : void
        {
            drawGridGuide();
            triangle( 100, 100, 150, 20, 200, 100 );
            quad( 100, 200, 150, 150, 200, 150, 250, 200 );
        }
        // 以下は,位置をわかり安くする説明のため
        // 処理なので無視してください.
        public function drawGridGuide() : void
        {
            var x : int;
            var y : int;
            stroke(192,192,192);
            for( x = 0 ; x < 465 ; x += 50 ) 
                line( x, 0, x, 465);
            for( y = 0 ; y < 465 ; y += 50 ) 
                line( 0, y, 465, y);
            stroke(0,0,0);
            ellipse(100, 100, 5, 5);            
            ellipse(150,  20, 5, 5);            
            ellipse(200, 100, 5, 5);            
            ellipse(100, 200, 5, 5);            
            ellipse(150, 150, 5, 5);            
            ellipse(200, 150, 5, 5);            
            ellipse(250, 200, 5, 5);            
        }
    }
}