Peace
The peace graphic was not my first choice in choosing a symbol to recreation. The first was the Skynet logo from the Terminator movies, but it involved tedious lines from within the triangle. Second was the Diver Down flag, I thought of it because it is very simple, but I wanted to choose something with a better reason than simplicity. I choose the peace symbol because it is a powerful symbol, easily understood and recognized, and with history.
Reference Image
My Version
//the circle
ctx.beginPath();
ctx.arc(400, 300, 200, 0, 2*Math.PI, false);
ctx.lineWidth=30;
ctx.stroke();
//the line
ctx.beginPath();
ctx.moveTo(400, 100);
ctx.lineTo(400, 500);
ctx.lineWidth= 30;
ctx.stroke();
//Line L
ctx.beginPath();
ctx.moveTo(200, 378);
ctx.lineTo(400, 300);
ctx.lineWidth= 30;
ctx.stroke();
//Line R
ctx.beginPath();
ctx.moveTo(600, 378);
ctx.lineTo(400, 300);
ctx.lineWidth= 30;
ctx.stroke();
Comments
Post a Comment