package sample.svg.contributed;
import static util.SVGUtil.*;

public class List207d {

	public static void main(String[] args) {
	    int i, angle = 24, x = 2;
	    
	    start();
	    rulers();

	    noFill();
	    translate(centerX(), centerY());

	    for (i=0; i<30 ;i++) {
	      stroke(hsb1(i/29.0, 1, 1));

	      pushMatrix();

	      rotate(radians(i*angle));
	      translate(i*x, 0);

	      rect(-5, -5, 10, 10);
	      popMatrix();
	    }

	    finish();
	    return;
	}

}
