| 116 | |
| 117 | static VgCommand beginPath() { return {EType::BeginPath, {}}; } |
| 118 | static VgCommand closePath() { return {EType::ClosePath, {}}; } |
| 119 | static VgCommand pathWinding(EWinding winding) { return {EType::PathWinding, {{(float)(int)winding}}}; } |
| 120 | |
| 121 | static VgCommand moveTo(Pos p) { return {EType::MoveTo, {{p.x, p.y}}}; } |
nothing calls this directly
no outgoing calls
no test coverage detected