cesium-native  0.41.0
CesiumGeometry::OctreeTileID Struct Reference

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.
 

Detailed Description

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.

Constructor & Destructor Documentation

◆ OctreeTileID()

constexpr CesiumGeometry::OctreeTileID::OctreeTileID ( uint32_t  level,
uint32_t  x,
uint32_t  y,
uint32_t  z 
)
inlineconstexprnoexcept

Creates a new instance.

Parameters
levelThe level of the node, with 0 being the root.
xThe x-coordinate of the tile.
yThe y-coordinate of the tile.
zThe z-coordinate of the tile.

Definition at line 33 of file OctreeTileID.h.


The documentation for this struct was generated from the following file: