package sample.svg.contributed;
import static util.SVGUtil.*;

public class Ozaki1 {
    public static void main(String[] args) {
        double h;
        start();
        rulers();
        for (int t = 0; t < 290; t = t + 10) {
            h = randomInRange(50,150);
            fill(hsb360(t*15,t*5,t*10));
            fillOpacity(0.5);
            rect(t+4, h, 10, 150-h);
        }
        finish();
        return;
    }
}