forked from: 点を打つ

by trtr forked from 点を打つ (diff: 19)
Frocessingを使った点の描画
@author shmdmoto
♥0 | Line 26 | Modified 2011-05-22 20:23:22 | MIT License
play

ActionScript3 source code

/**
 * Copyright trtr ( http://wonderfl.net/user/trtr )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/4iCy
 */

// forked from shmdmoto's 点を打つ
package 
{
    import frocessing.display.F5MovieClip2D;
    /**
     * Frocessingを使った点の描画
     * @author shmdmoto
     */
    public class GraphicExample extends F5MovieClip2D
    {
        public function draw() : void
        {
            // ここに描画命令を記述します.
            point(100,200);
            point(200,100);
            point(100,100);
            point(200,200);
            
            point(50,300);
            point(100,300);
            point(150,300);
            point(200,300);
            point(250,300);
            point(300,300);
            
            point(50,400);
            point(100,450);
            point(150,500);
            point(200,550);
            point(250,600);
            point(300,650);
            
        }

    }

}