package sample.svg.contributed;
import static util.SVGUtil.*;

public class Mi1 {
	public static void main(String[] args) {
		int i, j;
		double h;

		start();
		rulers();

		fill(0xffff00);
		stroke(0x0000ff);
		strokeWeight(1);

		for(i=2; i<9; i++){
			for(j=0; j<12; j++){
				if(i == 5 || j == 0 || j == 6) { continue; }
				h = randomInRange(0, 1);
				fill(hsb1(h, 1, 1));
				ellipse(25*j, 20*i, 15, 15);
			}
		}

		textFont("Verdana", 12);
		text("Kagawa Univ.", 50, 105);

		finish();	
		return;
	}
}
