I need to know how to draw polygons on a canvas. Without using jQuery or anything like that.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Create a path with moveTo and lineTo:
Live demo: http://jsfiddle.net/yd7Wv/1/ |
|||||||||
|
|
||||
|
|
|
from http://www.scienceprimer.com/drawing-regular-polygons-javascript-canvas: The following code will draw a hexagon. Change the number of sides to create different regular polygons.
|
|||
|
|
|
You can use the lineTo() method same as: var objctx = canvas.getContext('2d');
if you not want to fill the polygon use the stroke() method in the place of fill() You can also check the following: http://www.authorcode.com/draw-and-fill-a-polygon-and-triangle-in-html5/ thanks |
|||
|
|
|
|||
|
|
