import static util.SVGUtil.*;

public class Shiroiwa1 {
    public static void main(String[] args) {
        int i,j;
        double x, y, h;

        start();
        rulers();
        flowerSymbol("flower");
                
        fill(0xffff00);
        stroke(0x0000ff);
        strokeWeight(1);

        noFill();
        strokeOpacity(0.4);
        strokeWeight(1);
        for (j=1;j<20;j++){
            for (i=0;i<7;i++){
                x = randomInRange(30, 270);
                y = randomInRange(40, 160);
                h = randomInRange(0, 1);            
                stroke(hsb1(h, 1, 1));
                ellipse(x, y, j, j);
            }
        }
                
        fill(0x0000ff);
        textFont("Times New Roman", 10);
        text("YYYY MM DD", 225, 40);
                                                        
        fill(0x0000ff);
        textFont("Times New Roman", 10);
        text("Kagawa University", 180, 160);
                
        fill(0x0000ff);
        textFont("Times New Roman", 10);
        text("OpenCampus YYYY", 195, 175);
                
        finish();               
        return;
    }
}
