This repository was archived by the owner on Feb 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnvg.lua
100 lines (85 loc) · 2.42 KB
/
nvg.lua
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
-- wrapper for exposed nanoVG
return {
------------------------------------------------------------------------------
-- nano constants
------------------------------------------------------------------------------
const = {
hAlign = {
left = _G.NVG_ALIGN_LEFT,
center = _G.NVG_ALIGN_CENTER,
right = _G.NVG_ALIGN_RIGHT
},
vAlign = {
baseline = _G.NVG_ALIGN_BASELINE,
top = _G.NVG_ALIGN_TOP,
middle = _G.NVG_ALIGN_MIDDLE,
bottom = _G.NVG_ALIGN_BOTTOM
},
solidity = {
solid = _G.NVG_SOLID,
hole = _G.NVG_HOLE
},
winding = {
ccw = _G.NVG_CCW,
cw = _G.NVG_CW
}
},
-- State
save = _G.nvgSave,
restore = _G.nvgRestore,
-- Font
fontSize = _G.nvgFontSize,
fontFace = _G.nvgFontFace,
fontBlur = _G.nvgFontBlur,
textWidth = _G.nvgTextWidth,
-- returns table { minx, miny, maxx, maxy }
textBounds = _G.nvgTextBounds,
-- Fill
fillColor = _G.nvgFillColor,
fillLinearGradient = _G.nvgFillLinearGradient,
fillBoxGradient = _G.nvgFillBoxGradient,
fillRadialGradient = _G.nvgFillRadialGradient,
fill = _G.nvgFill,
-- Stroke
strokeColor = _G.nvgStrokeColor,
strokeLinearGradient = _G.nvgStrokeLinearGradient,
strokeBoxGradient = _G.nvgStrokeBoxGradient,
strokeRadialGradient = _G.nvgStrokeRadialGradient,
strokeWidth = _G.nvgStrokeWidth,
stroke = _G.nvgStroke,
-- Text
textAlign = _G.nvgTextAlign,
text = _G.nvgText,
-- Paths
beginPath = _G.nvgBeginPath,
moveTo = _G.nvgMoveTo,
lineTo = _G.nvgLineTo,
bezierTo = _G.nvgBezierTo,
quadTo = _G.nvgQuadTo,
arcTo = _G.nvgArcTo,
closePath = _G.nvgClosePath,
pathWinding = _G.nvgPathWinding,
-- Primitives
arc = _G.nvgArc,
rect = _G.nvgRect,
roundedRect = _G.nvgRoundedRect,
ellipse = _G.nvgEllipse,
circle = _G.nvgCircle,
-- Scissoring
scissor = _G.nvgScissor,
intersectScissor = _G.nvgIntersectScissor,
resetScissor = _G.nvgResetScissor,
-- Transform
translate = _G.nvgTranslate,
rotate = _G.nvgRotate,
skewX = _G.nvgSkewX,
skewY = _G.nvgSkewY,
scale = _G.nvgScale,
------------------------------------------------------------------------------------------------
--SVG BINDINGS
------------------------------------------------------------------------------------------------
-- NOTE: swapped param names position to be inline with other functions
svg = function(x, y, name, rad)
_G.nvgSvg(name, x, y, rad)
end,
}