| 105 | } |
| 106 | |
| 107 | BoundingRegion unprojectRegionSimple( |
| 108 | const Projection& projection, |
| 109 | const CesiumGeometry::AxisAlignedBox& box, |
| 110 | const CesiumGeospatial::Ellipsoid& ellipsoid) { |
| 111 | GlobeRectangle rectangle = unprojectRectangleSimple( |
| 112 | projection, |
| 113 | CesiumGeometry::Rectangle( |
| 114 | box.minimumX, |
| 115 | box.minimumY, |
| 116 | box.maximumX, |
| 117 | box.maximumY)); |
| 118 | return BoundingRegion(rectangle, box.minimumZ, box.maximumZ, ellipsoid); |
| 119 | } |
| 120 | |
| 121 | glm::dvec2 computeProjectedRectangleSize( |
| 122 | const Projection& projection, |
nothing calls this directly
no test coverage detected