An open API service indexing awesome lists of open source software.

https://github.com/opensourcebim/cesiumloader

A basic boundingbox loader to load models from BIMserver in CesiumJS
https://github.com/opensourcebim/cesiumloader

Last synced: 12 months ago
JSON representation

A basic boundingbox loader to load models from BIMserver in CesiumJS

Awesome Lists containing this project

README

          

# CesiumLoader

## JSON format

The returned JSON looks like this:

```json
[
{
"name": "Name of IFC entity",
"guid": "GUID of IFC entity",
"min": {
"x": 1,
"y": 1,
"z": 1
},
"max": {
"x": 5,
"y": 6,
"z": 3
}
},
...
]
```