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

forked from: flash on 2009-10-9

Get Adobe Flash player
by yd_niku 09 Oct 2009
/**
 * Copyright yd_niku ( http://wonderfl.net/user/yd_niku )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/gFee
 */

// forked from yd_niku's flash on 2009-10-9
package {
    import flash.display.Sprite;
    import frocessing.color.ColorHSV;
    import frocessing.display.F5MovieClip3DBmp;
    public class FlashTest extends F5MovieClip3DBmp {
        private var _hsv:ColorHSV;
        public function FlashTest() {
            // write as3 code here..
            _hsv = new ColorHSV( 0, 1, 1, 1 );
            size( 465, 465 );
            //noStroke();
            background( 0 );
            stroke( 0xFF, 0.5 );
            noFill();
            //translate( 232, 232 );
            circle( 0, 0, 10 );
            
            for( var i:int = 0; i<465; i++ ) {
                curveTo3d(
                   Math.random()*465, Math.random()*465, Math.random()*465,
                   Math.random()*465, Math.random()*465, Math.random()*465
                );
                _hsv.h++;
            }
            
        }
    }
}