We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Canvas의 메서드
기능 : 패스기반의 선 도형을 그릴 때 현재 패스를 닫는다 (패스 그리는 것을 종료)
사용방법 예제
context.beginPath();
context.moveTo(x1,y1);
context.lineTo(x2,y2);
context.closePath();
context.stroke();