/* built with Studio Sketchpad:
* https://sketchpad.cc
*
* observe the evolution of this sketch:
* https://studio.sketchpad.cc/sp/pad/view/ro.JS1rAq$JrRM/rev.302
*
* authors:
* jaruz
* license (unless otherwise specified):
* creative commons attribution-share alike 3.0 license.
* https://creativecommons.org/licenses/by-sa/3.0/
*/
size(300,300);
background(155);
translate(width/2, height/2);
noFill();
for(int i=10; i<100; i+=1){
rotate(0.3);
rectanguloCentrado(i);
}
void rectanguloCentrado(int tamanyo){
rect(-tamanyo, -tamanyo, tamanyo*2, tamanyo*2);
}