I need to know how to draw polygons on a canvas. Without using jQuery or anything like that.

link|improve this question

73% accept rate
feedback

2 Answers

up vote 16 down vote accepted

Create a path with moveTo and lineTo:

var c2 = canvas.getContext('2d');
c2.fillStyle = '#f00';
c2.beginPath();
c2.moveTo(0, 0);
c2.lineTo(100,50);
c2.lineTo(50, 100);
c2.lineTo(0, 90);
c2.closePath();
c2.fill();

Live demo: http://jsfiddle.net/yd7Wv/1/

link|improve this answer
1  
+1, I had no idea jsFiddle supported HTML5 canvases. – Gio Borje Jan 29 '11 at 23:58
8  
@Gio Borje: AFAIK, jsFiddle doesn't care about canvas, that's your browser. jsFiddle just feeds your HTML/CSS/JS back to you. – mu is too short Jan 30 '11 at 1:26
feedback
//poly [x,y, x,y, x,y.....];
var poly=[ 5,5, 100,50, 50,100, 10,90 ];
var canvas=document.getElementById("canvas")
var ctx = canvas.getContext('2d');
ctx.fillStyle = '#f00';

ctx.beginPath();
ctx.moveTo(poly[0], poly[1]);
for( item=2 ; item < poly.length-1 ; item+=2 ){ctx.lineTo( poly[item] , poly[item+1] )}

ctx.closePath();
ctx.fill();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.