| 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}}}; } |
| 122 | |
| 123 | static VgCommand lineTo(Pos p) { return {EType::LineTo, {{p.x, p.y}}}; } |
| 124 |
nothing calls this directly
no outgoing calls
no test coverage detected