2008-10-28 本日のプロセッシング09「リストからランダムに」 Processing Python ProcessingのPython版「NodeBox」で色々してみたい(゚Д゚)p choice() リストからランダムにアイテムを取得する関数(NodeBoxチュートリアル Data Listsより) とりあえず書いてみた size(300, 210) colormode(HSB) background(0.95,0.7,0.9) words = ["sushi", "geisya", "fujiyama"] colors = [color(0.8,0.5,1), color(0.6,0.5,1), color(0.1,0.5,0.8)] for n in range(100): fill(choice(colors)) fontsize(random(8,35)) text(choice(words), random(-20, 300), random(210))