#include <stdio.h>
#include <math.h>
#include "svg.h"

int main(void){
    int i, angle = 24, x = 2;
    
    start();
    fill(rgb255(148,189,94));
    guideBars(1);

    noFill();
    translate(WIDTH/2, HEIGHT/2);

    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 0;
}
