| 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}}}; |
| 143 | } |
| 144 | |
| 145 | static VgCommand |
| 146 | roundedRectVarying(Pos p, Size size, float radiusTopLeft, float radiusTopRight, float radiusBottomRight, float radiusBottomLeft) { |
nothing calls this directly
no outgoing calls
no test coverage detected