WebGL-based 3D visualization library
npm install xeogl

xeogl is a data-driven WebGL-based engine from xeolabs for 3D visualization in the browser
without using plugins.
Follow xeolabs on Twitter for updates: @xeographics
Find out more in the Getting Started guide.

```JavaScript``
var model = new xeogl.GLTFModel({
id: "office",
src: "models/gltf/office/scene.gltf",
transform: new xeogl.Scale({
xyz: [.01, .01, .01]
})
});
var camera = model.scene.camera;
camera.eye = [-180.21, 248.69, -262.17];
camera.look = [-79.57, -23.08, 2.36];
camera.up = [0.24, 0.72, 0.64];
- Website
- Examples
- Features
- API Docs
- Wiki
- Download
- MIT License
`````
git clone git@github.com:xeolabs/xeogl.git
cd xeogl
npm install
npm run build