cesium-native  0.41.0
BoundingVolume.h
1 // This file was generated by generate-classes.
2 // DO NOT EDIT THIS FILE!
3 #pragma once
4 
5 #include "Cesium3DTiles/Library.h"
6 
7 #include <CesiumUtility/ExtensibleObject.h>
8 
9 #include <vector>
10 
11 namespace Cesium3DTiles {
17 struct CESIUM3DTILES_API BoundingVolume final
19  static inline constexpr const char* TypeName = "BoundingVolume";
20 
29  std::vector<double> box;
30 
41  std::vector<double> region;
42 
49  std::vector<double> sphere;
50 };
51 } // namespace Cesium3DTiles
Classes for using 3D Tiles.
Definition: Buffer.h:7
A bounding volume that encloses a tile or its content. At least one bounding volume property is requi...
std::vector< double > region
An array of six numbers that define a bounding geographic region in EPSG:4979 coordinates with the or...
std::vector< double > sphere
An array of four numbers that define a bounding sphere. The first three elements define the x,...
std::vector< double > box
An array of 12 numbers that define an oriented bounding box. The first three elements define the x,...
The base class for objects that have extensions and extras.