| 109 | static VgCommand restore() { return {EType::Restore, {}}; } |
| 110 | |
| 111 | static VgCommand fillColor(Color c) { return {EType::FillColor, {{c.r, c.g, c.b, c.a}}}; } |
| 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}}}; } |
nothing calls this directly
no outgoing calls
no test coverage detected