package sample.svg.contributed;
import static util.SVGUtil.*;

/* カニッツアの三角形 */
public class Yama1 {
	public static void main(String[] args) {
		start();
		rulers();

		stroke(0x000000);

		fill(0x000000);
		fillOpacity(1);
		strokeOpacity(1);

		ellipse(80, 60, 20, 20);
		ellipse(140, 60, 20, 20);
		ellipse(80, 120, 20, 20);
		ellipse(140, 120, 20, 20);
		line(110,90+42.4,110+42.4,90);
		line(110,90-42.4,110-42.4,90);
		line(110,90-42.4,110+42.4,90);
		line(110,90+42.4,110-42.4,90);
		/* triangle(40, 40, 50, 50, 60, 60); */

		stroke(0xffffff);
		fill(0xffffff);
		rect(80, 60, 60, 60);

		finish();		
		return;
	}
}
