From c2aae9015159ad02b4f12c2ec93c4b19700f71d4 Mon Sep 17 00:00:00 2001 From: Young Guk Kim <kyk1047715@gmail.com> Date: Wed, 25 Apr 2018 06:53:19 +0900 Subject: [PATCH] te --- ti/static/ti/cv.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ti/static/ti/cv.js b/ti/static/ti/cv.js index 94ab46a..84aece4 100644 --- a/ti/static/ti/cv.js +++ b/ti/static/ti/cv.js @@ -81,6 +81,10 @@ ctx.fillStyle = 'red'; // 채우기 색 지정 ctx.globalAlpha = "1.0"; // 채우기 투명도 설정 ctx.fillRect(0,0,500,500); + ctx.beginPath(); +ctx.moveTo(50, 50); +ctx.lineTo(100, 100); +ctx.stroke(); } function finishDraw(){ -- GitLab