All Projects → wanadev → gltf-bounding-box

wanadev / gltf-bounding-box

Licence: other
Computes the global bounding box of a gltf model

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to gltf-bounding-box

GLTFKit2
A glTF 2.0 asset loader and exporter for Objective-C and Swift.
Stars: ✭ 30 (+66.67%)
Mutual labels:  gltf, gltf2
docker-gltf-to-udsz
Docker container for converting gltf files into apple usdz quicklook files
Stars: ✭ 42 (+133.33%)
Mutual labels:  gltf, gltf2
verge3d-blender-addon
WebGL exporter add-on ripped from Verge3D for Blender toolkit
Stars: ✭ 91 (+405.56%)
Mutual labels:  gltf, gltf2
webgl-gltf
GLTF Viewer For WebGL
Stars: ✭ 26 (+44.44%)
Mutual labels:  gltf, gltf2
orkid
Orkid Media Engine (C++/Lua/Python3/Linux/MacOs/OpenVR/Qt5)
Stars: ✭ 20 (+11.11%)
Mutual labels:  gltf, gltf2
gdx-gltf
GLTF 2.0 3D format support and PBR shader implementation for LibGDX
Stars: ✭ 156 (+766.67%)
Mutual labels:  gltf, gltf2
maya-glTF
glTF 2.0 exporter for Autodesk Maya
Stars: ✭ 121 (+572.22%)
Mutual labels:  gltf, gltf2
libgltf
glTF 2.0 parser/loader for C++11, supports many extensions likes `KHR_draco_mesh_compression`, `KHR_lights_punctual`, `KHR_materials_clearcoat`, and more.
Stars: ✭ 55 (+205.56%)
Mutual labels:  gltf, gltf2
f3d
Fast and minimalist 3D viewer.
Stars: ✭ 791 (+4294.44%)
Mutual labels:  gltf
hcv-color
🌈 Color model HCV/HCG is an alternative to HSV and HSL, derived by Munsell color system, usable for Dark and Light themes... 🌈
Stars: ✭ 44 (+144.44%)
Mutual labels:  model
glTF-Rhino
Support for glTF 2.0 files in Rhino
Stars: ✭ 37 (+105.56%)
Mutual labels:  gltf2
glAvatar
a glTF extension (extra?) for avatar with switchable skeletons, skins, clothes, etc.
Stars: ✭ 30 (+66.67%)
Mutual labels:  gltf
Odin
manage model revisions with ease
Stars: ✭ 60 (+233.33%)
Mutual labels:  model
DTE
Generate C# class from database table
Stars: ✭ 26 (+44.44%)
Mutual labels:  model
trans-dsl
a transaction model framework, seems simple but powerful
Stars: ✭ 64 (+255.56%)
Mutual labels:  model
oggm
Open Global Glacier Model
Stars: ✭ 167 (+827.78%)
Mutual labels:  model
ModelSynchro
A JSON model generator for Swift 4
Stars: ✭ 19 (+5.56%)
Mutual labels:  model
android-3d-model-viewer
Android app to load 3D models in obj, stl, dae & gltf format using pure OpenGL ES 2.0. Published on Play Store https://play.google.com/store/apps/details?id=org.andresoviedo.dddmodel2
Stars: ✭ 150 (+733.33%)
Mutual labels:  gltf
SpleeterRT
Real time monaural source separation base on fully convolutional neural network operates on Time-frequency domain.
Stars: ✭ 111 (+516.67%)
Mutual labels:  model
virtio
Virtio implementation in SystemVerilog
Stars: ✭ 38 (+111.11%)
Mutual labels:  model

gltf-bounding-box

Computes the global bounding box of a gltf model

npm version Travis build status Dependency Status devDependency Status

Usage

import gltfBoundingBox from 'gltf-bounding-box';

const model = JSON.parse(fs.readFileSync('suzanne.gltf'), 'utf8');

const boundings = gltfBoundingBox.computeBoundings(model);

// boundings:
{
  dimensions: {
    width: 3,
    depth: 2,
    height: 2,
  },
  center: {
    x: 0,
    y: 0,
    z: 0,
  },
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].