UNPKG
test-gcanvas-node
Version:
latest (1.0.1)
1.0.1
1.0.0
gcanvas for node developer
test-gcanvas-node
/
core
/
test
/
benchmarks
/
path
/
tc_2d_closePath.js
12 lines
(9 loc)
•
249 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
ctx.fillStyle = '#000000'; ctx.fillRect(0, 0, c.width, c.height); ctx.beginPath(); ctx.strokeStyle = "yellow"; ctx.moveTo(10
*ratio , 10 *
ratio); ctx.lineTo(100
*ratio , 100 *
ratio); ctx.lineTo(70
*ratio, 200*
ratio ); ctx.closePath(); ctx.stroke();