| 137 | static VgCommand quadTo(Pos c, Pos p) { return {EType::QuadTo, {{c.x, c.y, p.x, p.y}}}; } |
| 138 | |
| 139 | static VgCommand rect(Pos p, Size size) { return {EType::Rect, {{p.x, p.y, size.width, size.height}}}; } |
| 140 | |
| 141 | static VgCommand roundedRect(Pos p, Size size, float radius) { |
| 142 | return {EType::RoundedRect, {{p.x, p.y, size.width, size.height, radius}}}; |
nothing calls this directly
no outgoing calls
no test coverage detected