import static util.SVGUtil.*;

public class HSBGrad {

    public static void main(String[] args) {
        int i,j;

        int x0=36, y0=32;
        int cStart = 0x2600, cEnd = 0x269d;  /* 使う特殊文字の範囲 */
        textFont("Segoe UI Symbol", 10);             /* フォントとサイズ */

        start();
        rulers();
        //              flowerSymbol("flower");
        int c = cStart;
        for (i=0; i<25; i++) {
            for (j=1; j<15; j++) {
                fill(hsl360(i*15, j*100.0/14, 50));
                //                              use("#flower", x0+i*10, y0+j*10, 6, 6);
                text(String.format("&#x%x;", c++), x0+i*9, y0+j*10);
                if (c > cEnd) {
                    c = cStart;
                }
            }
        }

        fillOpacity(1);
        fill(rgb255(40,80,40));
        textFont("Verdana", 4);
        rotate(PI/2);
        text("Faculty of Engineering, Kagawa University", 35, -10);

        finish();
        return;
    }

}
