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
/
verb
/
tc_sample_path_scale.js
25 lines
(14 loc)
•
250 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
ctx.lineWidth = 10; ctx.beginPath(); ctx.translate(100, 100); ctx.save(); ctx.moveTo(40, 40); ctx.lineTo(50, 50); //before scale ctx.lineTo(40, 0); ctx.moveTo(50, 50) //scale ctx.scale(2, 2); ctx.lineTo(40, 0); ctx.restore(); ctx.stroke();