package sample.svg.contributed;
import static util.SVGUtil.*;

public class Kon2 {
	public static void main(String[] args) {
		int i;

		start();
		rulers();

		fill(0xffff00);
		stroke(0x0000ff);
		strokeWeight(1);

		fill(0xff0000);
		textFont("Verdana", 12);
		text("Kagawa Univ.", 20, 40);

		for (i=2; i<11; i++) {
			fill(0xffff00-i*0x110000+i*0x000011);
			stroke(0xffff00-i*0x110000+i*0x000011);
			rect(20*i, 9*i+25, 20*i*0.3, 20*i*0.3);
		}

		finish();		
		return;
	}
}