3dTiles数据解析
1.解析json文件 3dtiles的数据结构: 2.解析b3dm模型 (1)b3dm模型文件时二进制文件,其中包含glTF文件: 当使用tiny_gltf库解析glTF时,需要减去(28byte + featuretable的byte + batchTable的byte ): bool TinyGLTF::ExtractGltfFromMemory(Model *model, std::string *err, std::string *warn, const unsigned char *bytes, unsigned int size, const std::string &base_dir, unsigned int check_sections) { if (size < 28) { if (err) { (*err) = "Too short data size for b3dm Binary."; } return false; } if (bytes[0] == 'b' && bytes[1] == …