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
- Host: GitHub
- URL: https://github.com/opensourcebim/cesiumloader
- Owner: opensourceBIM
- Created: 2016-03-01T10:01:06.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2018-12-09T09:12:21.000Z (over 7 years ago)
- Last Synced: 2025-03-24T17:21:17.591Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 46.9 KB
- Stars: 22
- Watchers: 11
- Forks: 15
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
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
}
},
...
]
```