cesium-native  0.41.0
QuadtreeTileRectangularRange.h
1 #pragma once
2 
3 #include <cstdint>
4 
5 namespace CesiumGeometry {
6 
11 
16  uint32_t level;
17 
21  uint32_t minimumX;
22 
26  uint32_t minimumY;
27 
31  uint32_t maximumX;
32 
36  uint32_t maximumY;
37 };
38 
39 } // namespace CesiumGeometry
Basic geometry classes for Cesium.
A rectangular range of tiles at a particular level of a quadtree.
uint32_t maximumY
The maximum y-coordinate of the range, inclusive.
uint32_t maximumX
The maximum x-coordinate of the range, inclusive.
uint32_t minimumX
The minimum x-coordinate of the range, inclusive.
uint32_t level
The level in the tree at which this rectangle is located, with 0 being the root.
uint32_t minimumY
The minimum y-coordinate of the range, inclusive.