UNPKG
@shuding/opentype.js
Version:
beta (1.4.0-beta.0)
latest (1.3.5)
1.4.0-beta.0
1.3.5
1.3.4
OpenType font parser
github.com/opentypejs/opentype.js
opentypejs/opentype.js
@shuding/opentype.js
/
src
/
draw.js
12 lines
(9 loc)
•
256 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
// Drawing utility functions.
// Draw a line on the given context from point `x1,y1` to point `x2,y2`.
function
line
(ctx, x1, y1, x2, y2) { ctx
.beginPath
(); ctx
.moveTo
(x1, y1); ctx
.lineTo
(x2, y2); ctx
.stroke
(); } export default {
line
};