package sample.svg;
import static util.SVGUtil.*;

public class FirstSample {
	public static void main(String[] args) {
		start();                     /* 最初に必要 */
		rulers();                    /* 四隅の線   */

		strokeWeight(1);
		stroke(hsb360(0, 100, 100)); /* 線の色 */
		fill(hsb360(180, 50, 100));  /* 塗りの色 */ 
		rect(70, 50, 60, 70);        /* 長方形 */

		stroke(hsb360(120, 100, 100));
		fill(hsb360(300, 50, 100));
		ellipse(210, 85, 60, 70);    /* 楕円 */

		stroke(hsb360(60, 100, 100));
		line(60, 160, 160, 160);     /* 直線 */

		noStroke();
		fill(hsb360(240, 100, 100));
		textFont("Times New Roman", 12);
		text("ABCxyz12345&#x2600;&#x2602;", 60, 160); 
		/* 文字列 */
		finish();                    /* 最後に必要 */
	}
}
