<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
// create a stage for the Deathly Hallows symbol
var stage = acgraph.create('container');
// draw the square
stage.rect(25, 50, 350, 300);
// draw the circle
stage.circle(200, 250, 100);
// draw the triangle
stage.path()
.moveTo(25, 350)
.lineTo(200, 50)
.lineTo(375, 350)
.close();
// draw the wand in the middle
.moveTo(200, 50)
.lineTo(200, 350);