HTML5 Canvas Draw a Line

HTML5 Canvas Draw a Line 

 

Draw a Line

 

c66f16eda2ac61c2eb8791397aa37c98_1484836006_651.PNG
 

 

Example

var c = document.getElementById("myCanvas");

var ctx = c.getContext("2d");

ctx.moveTo(0,0);

ctx.lineTo(200,100);

ctx.stroke();

|

댓글 작성

댓글을 작성하시려면 로그인이 필요합니다.

로그인하기
🐛 버그신고