Skip to content
Snippets Groups Projects
Commit c2aae901 authored by kyk1047715's avatar kyk1047715
Browse files

te

parent d1842d52
No related branches found
No related tags found
No related merge requests found
...@@ -81,6 +81,10 @@ ...@@ -81,6 +81,10 @@
ctx.fillStyle = 'red'; // 채우기 색 지정 ctx.fillStyle = 'red'; // 채우기 색 지정
ctx.globalAlpha = "1.0"; // 채우기 투명도 설정 ctx.globalAlpha = "1.0"; // 채우기 투명도 설정
ctx.fillRect(0,0,500,500); ctx.fillRect(0,0,500,500);
ctx.beginPath();
ctx.moveTo(50, 50);
ctx.lineTo(100, 100);
ctx.stroke();
} }
function finishDraw(){ function finishDraw(){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment