ProcessingのPython版「NodeBox」で色々してみたい(゚Д゚)p
NodeBox本家のチュートリアルがよくわからんので『ブラウザでお絵描きプログラミング! Processing.js 登場! - IT戦記』さんのJavascriptのコードを参考にごにょごにょ書いてみた。
size(200, 200) colormode(HSB) background(0.85, 0.7, 0.9) for i in range(400): fill(0.8, random(), 1, 0.2) oval(random(200), random(200), random(30), random(30))
ほほぅ(゚Д゚)
Processing.js みたいに NodeBox もブラウザで見れるようにできるんじゃろか?