cesium-native
0.41.0
|
A structure serving as a unique identifier for a node in an octree. More...
#include <CesiumGeometry/OctreeTileID.h>
Public Member Functions | |
constexpr | OctreeTileID () |
Creates a new instance. | |
constexpr | OctreeTileID (uint32_t level, uint32_t x, uint32_t y, uint32_t z) noexcept |
Creates a new instance. More... | |
constexpr bool | operator== (const OctreeTileID &other) const noexcept |
Returns true if two identifiers are equal. | |
constexpr bool | operator!= (const OctreeTileID &other) const noexcept |
Returns true if two identifiers are not equal. | |
Public Attributes | |
uint32_t | level |
The level of this tile ID, with 0 being the root tile. | |
uint32_t | x |
The x-coordinate of this tile ID. | |
uint32_t | y |
The y-coordinate of this tile ID. | |
uint32_t | z |
The z-coordinate of this tile ID. | |
A structure serving as a unique identifier for a node in an octree.
This is one form of a Cesium3DTilesSelection::TileID.
The identifier is composed of the level (with 0 being the level of the root tile), the x-, y-, and z-coordinate of the tile, referring to a grid coordinate system at the respective level.
Definition at line 18 of file OctreeTileID.h.
|
inlineconstexprnoexcept |
Creates a new instance.
level | The level of the node, with 0 being the root. |
x | The x-coordinate of the tile. |
y | The y-coordinate of the tile. |
z | The z-coordinate of the tile. |
Definition at line 33 of file OctreeTileID.h.