| 112 | static VgCommand fill() { return {EType::Fill, {}}; } |
| 113 | |
| 114 | static VgCommand strokeColor(Color c) { return {EType::StrokeColor, {{c.r, c.g, c.b, c.a}}}; } |
| 115 | static VgCommand stroke() { return {EType::Stroke, {}}; } |
| 116 | |
| 117 | static VgCommand beginPath() { return {EType::BeginPath, {}}; } |
nothing calls this directly
no outgoing calls
no test coverage detected