5#include <Cesium3DTiles/BoundingVolume.h>
6#include <Cesium3DTilesReader/Library.h>
7#include <CesiumJsonReader/JsonReader.h>
8#include <CesiumJsonReader/JsonReaderOptions.h>
10#include <rapidjson/fwd.h>
Reads BoundingVolume instances from JSON.
BoundingVolumeReader()
Constructs a new instance.
CesiumJsonReader::JsonReaderOptions & getOptions()
Gets the options controlling how the JSON is read.
CesiumJsonReader::ReadJsonResult< Cesium3DTiles::BoundingVolume > readFromJson(const rapidjson::Value &value) const
Reads an instance of BoundingVolume from a rapidJson::Value.
CesiumJsonReader::ReadJsonResult< Cesium3DTiles::BoundingVolume > readFromJson(const std::span< const std::byte > &data) const
Reads an instance of BoundingVolume from a byte buffer.
const CesiumJsonReader::JsonReaderOptions & getOptions() const
Gets the options controlling how the JSON is read.
CesiumJsonReader::ReadJsonResult< std::vector< Cesium3DTiles::BoundingVolume > > readArrayFromJson(const rapidjson::Value &value) const
Reads an array of instances of BoundingVolume from a rapidJson::Value.
Holds options for reading statically-typed data structures from JSON.
Classes for reading 3D Tiles.
std::variant< CesiumGeometry::BoundingSphere, CesiumGeometry::OrientedBoundingBox, CesiumGeospatial::BoundingRegion, CesiumGeospatial::BoundingRegionWithLooseFittingHeights, CesiumGeospatial::S2CellBoundingVolume > BoundingVolume
A bounding volume.
Classes for using 3D Tiles.
The result of JsonReader::readJson.