Schotter

by honray @ 3:06 am 12 January 2011

The .JS version:

the Jar version:

the OpenFrameworks version:

code:

public final int width = 20;
public final int height = 20;

public void setup() {
size(400,500);
background(0xffffff);
noFill();
noLoop();
}
public void draw() {
for(int x = 0; x < 12; x++) { for(int y = 0; y < 20; y++) { translate(x*width,y*height); float random = random((float)y/5); rotate((random(2f)-1f)*random*random); rect(0,0,width,height); resetMatrix(); } } }

This work is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License.
(c) 2024 Interactive Art & Computational Design / Spring 2011 | powered by WordPress with Barecity