frocessing - lesson 1

by mathatelle
円を描く
♥0 | Line 8 | Modified 2009-09-12 22:51:23 | 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/3foj
 */

// 円を描く
package {
    import frocessing.display.*;
    public class FrocessingLesson extends F5MovieClip2DBmp{
        public function FrocessingLesson() {
            ellipse(width/2, height/2, width/2, height/2);
        }
    }
}

Forked