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

楕円を回転(モノクロ)

Get Adobe Flash player
by lenonsun 03 Nov 2011
    Embed
/**
 * Copyright lenonsun ( http://wonderfl.net/user/lenonsun )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/7OyP
 */

// 楕円を回転(モノクロ)
package 
{
    import flash.display.AVM1Movie;
    import frocessing.display.F5MovieClip2D;
    /**
     * 楕円を回転
     */
    public class GraphicExample extends F5MovieClip2D
    {
        public function setup() : void
        {
            var i:int, j:int;
            noFill();
            // 原点を移動
            translate(465/2, 465/2);
            for( i = 0 ; i < 3 ; i++ ) {              
                ellipse(0, 0, 350, 200);
                rotate(radians(60));
            }
        }
    }
}