| 91 | } |
| 92 | |
| 93 | CesiumGeometry::AxisAlignedBox projectRegionSimple( |
| 94 | const Projection& projection, |
| 95 | const BoundingRegion& region) { |
| 96 | CesiumGeometry::Rectangle rectangle = |
| 97 | projectRectangleSimple(projection, region.getRectangle()); |
| 98 | return CesiumGeometry::AxisAlignedBox( |
| 99 | rectangle.minimumX, |
| 100 | rectangle.minimumY, |
| 101 | region.getMinimumHeight(), |
| 102 | rectangle.maximumX, |
| 103 | rectangle.maximumY, |
| 104 | region.getMaximumHeight()); |
| 105 | } |
| 106 | |
| 107 | BoundingRegion unprojectRegionSimple( |
| 108 | const Projection& projection, |
nothing calls this directly
no test coverage detected