flash on 2013-7-17

by wwbeyondww1
♥0 | Line 17 | Modified 2013-07-17 13:01:39 | MIT License
play

ActionScript3 source code

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

package {
    import flash.display.Sprite;
    import frocessing.display.F5MovieClip2D;
    public class FlashTest extends F5MovieClip2D {
       
        public function FlashTest() {
            // write as3 code here..
           colorMode(HSV,100,1,100);
            for(var i:int=0;i<360;i++)
            {
                for(var j:int=0;j<100;j++)
                {
                    stroke(i,1,j,1);
                    point(i+100,j+100);
                }

            }

            
        }
    }
}