Forked from: shmdmoto's 赤から緑へのグラデーション diff:4 練習forked from: 赤から緑へのグラデーション 第5週 doragon006 forked:1favorite:0lines:15license : MIT License modified : 2010-10-11 14:34:49 Embed Tweet // forked from shmdmoto's 赤から緑へのグラデーション // forked from shmdmoto's 赤から緑へのグラデーション package { import frocessing.display.F5MovieClip2D; /** * lineを使った赤から緑へのグラデーション * @author shmdmoto */ public class GraphicExample extends F5MovieClip2D { public function setup() : void { var x:Number; for( y = 0 ; y <= 465 ; y++ ) { stroke(0,255*y/465,255 - 255*y/465); line(y, 0, y, 465); } } } } Code Fullscreen Preview Fullscreen shohoku_col20101011 Number sort new page view favorite forked pv167 forked from: 練習forked from: 赤か.. doragon006 forked:0 favorite:0lines:15 (diff:1)