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_beginPath.js
13 lines
(12 loc)
•
275 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
// First path
ctx.beginPath(); ctx.strokeStyle =
'blue'
; ctx.moveTo(
20
*ratio,
20
*ratio); ctx.lineTo(
200
*ratio,
20
*ratio); ctx.stroke();
// Second path
ctx.beginPath(); ctx.strokeStyle =
'green'
; ctx.moveTo(
20
*ratio,
20
*ratio); ctx.lineTo(
120
*ratio,
120
*ratio); ctx.stroke();