package sample.svg.contributed;
import static util.SVGUtil.*;

public class Matsu2 {
	public static void main(String[] args) {
		int i;

		start();
		rulers();

		noStroke();
		fillOpacity(0.3);

		for (i=0; i<100; i++) {
			double x, y, h;
			x = randomInRange(10, 207);
			y = randomInRange(40, 180);
			h = randomInRange(0, 1);
			fill(hsb1(h, 1, 1));
			text("Kagawa Univ.", x, y);
		}

		finish();
		return;
	}
}
