|
cesium-native 0.52.0
|
Reads Tile instances from JSON. More...
#include <Cesium3DTilesReader/TileReader.h>
Public Member Functions | |
| TileReader () | |
| Constructs a new instance. | |
| CesiumJsonReader::JsonReaderOptions & | getOptions () |
| Gets the options controlling how the JSON is read. | |
| const CesiumJsonReader::JsonReaderOptions & | getOptions () const |
| Gets the options controlling how the JSON is read. | |
| CesiumJsonReader::ReadJsonResult< Cesium3DTiles::Tile > | readFromJson (const std::span< const std::byte > &data) const |
| Reads an instance of Tile from a byte buffer. | |
| CesiumJsonReader::ReadJsonResult< Cesium3DTiles::Tile > | readFromJson (const rapidjson::Value &value) const |
| Reads an instance of Tile from a rapidJson::Value. | |
| CesiumJsonReader::ReadJsonResult< std::vector< Cesium3DTiles::Tile > > | readArrayFromJson (const rapidjson::Value &value) const |
| Reads an array of instances of Tile from a rapidJson::Value. | |
Reads Tile instances from JSON.
Definition at line 24 of file TileReader.h.
| CesiumJsonReader::ReadJsonResult< std::vector< Cesium3DTiles::Tile > > Cesium3DTilesReader::TileReader::readArrayFromJson | ( | const rapidjson::Value & | value | ) | const |
Reads an array of instances of Tile from a rapidJson::Value.
| value | The value from which to read the array of instances. |
| CesiumJsonReader::ReadJsonResult< Cesium3DTiles::Tile > Cesium3DTilesReader::TileReader::readFromJson | ( | const rapidjson::Value & | value | ) | const |
Reads an instance of Tile from a rapidJson::Value.
| value | The value from which to read the instance. |
| CesiumJsonReader::ReadJsonResult< Cesium3DTiles::Tile > Cesium3DTilesReader::TileReader::readFromJson | ( | const std::span< const std::byte > & | data | ) | const |
Reads an instance of Tile from a byte buffer.
| data | The buffer from which to read the instance. |