| 39 | } |
| 40 | |
| 41 | std::optional<std::pair<Vector2, Vector2>> DisplayItem::GetBounds() const |
| 42 | { |
| 43 | auto bounds = g_Renderer.GetDisplayItemBounds(*this); |
| 44 | if (!bounds.has_value()) |
| 45 | return std::nullopt; |
| 46 | |
| 47 | return bounds; |
| 48 | } |
| 49 | |
| 50 | const EulerAngles& DisplayItem::GetRotation() const |
| 51 | { |
nothing calls this directly
no test coverage detected