HTML5 Canvas Draw a Circle 정보
HTML HTML5 Canvas Draw a Circle본문
Draw a Circle
Example
var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");
ctx.beginPath();
ctx.arc(95,50,40,0,2*Math.PI);
ctx.stroke();
추천
0
0
댓글 0개