Stop
Continue
Go
/* Random Circles This example draws 20 circles of radius 10 in random locations. */ function setup(){ //no special setup needed } function draw(){ var i; //index for for loop var x,y; //variables for circle center for (i=0;i<20;i=i+1){ //i=0,1,...20 x=width*random(); //random x value y=height*random(); //random y value circle(x,y,10); //circle of radius 10 } }
default
3024-day
3024-night
ambiance
base16-dark
base16-light
blackboard
cobalt
eclipse
elegant
erlang-dark
lesser-dark
mbo
mdn-like
midnight
monokai
neat
night
paraiso-dark
paraiso-light
pastel-on-dark
rubyblue
solarized dark
solarized light
the-matrix
tomorrow-night-eighties
twilight
vibrant-ink
xq-dark
xq-light