package sample.svg.contributed;
import static util.SVGUtil.*;

public class Test {
	public static void main(String[] args) {
		int i;

		start();
		rulers();

		fill(0xffff00);
		stroke(0x0000ff);
		strokeWeight(1);

		rect(20, 20, 20, 20);
		arc(20, 20, 20, 20, 90, 0);
		fill(0xff0000);
		for(i=2; i<10; i++) {
			rect(20*i, 20*i, 20, 20);
		}

		fill(0x00ff00);
		textFont("Verdana", 12);
		text("Kagawa Univ.", 20, 50);

		finish();
	}
}
