frocessing - lesson 2

by mathatelle forked from frocessing - lesson 1 (diff: 8)
setup関数とdraw関数を使って書き換え
♥0 | Line 11 | Modified 2009-09-12 23:19:25 | MIT License
play

ActionScript3 source code

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

// forked from mathatelle's frocessing - lesson 1
// setup関数とdraw関数を使って書き換え
package {
    import frocessing.display.*;
    public class FrocessingLesson extends F5MovieClip2DBmp{
        
        public function setup():void {
            noLoop();
        }
        
        public function draw():void {
            ellipse(width/2, height/2, width/2, height/2);
        }
    }
}

Forked