package sample.svg;
import static util.SVGUtil.*;

public class RandTest {
	public static void main(String[] args) {
		int i;
		start();
		rulers();

		noStroke();
		fillOpacity(0.3);

		for(i=0; i<383; i++) {
			double x, y, h;
			x = randomInRange(20, 277);
			y = randomInRange(30, 180);
			h = randomInRange(0, 1);
			fill(hsb1(h, 1, 1));
			ellipse(x, y, 10, 10);
		}

		finish();
		return;
	}
}
