forked from: 赤と緑の2トーンカラーチャート

by myg019 forked from 赤と緑の2トーンカラーチャート (diff: 7)
赤と緑のダブルトーンカラーチャート
@author shmdmoto
♥0 | Line 15 | Modified 2010-10-11 16:20:52 | MIT License
play

ActionScript3 source code

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

// forked from shmdmoto's 赤と緑の2トーンカラーチャート
package 
{
    import frocessing.display.F5MovieClip2D;
    /**
     * 赤と緑のダブルトーンカラーチャート
     * @author shmdmoto
     */
    public class GraphicExample extends F5MovieClip2D
    {
        public function setup() : void
        {
           var x:Number;
            for( x = 0 ; x<= 465 ; x++ ) {
           stroke(255, x, y, 0);
                point(x,y);
                }
            }
        }
    }