Get dimensions of fbx model

Is it possible to get the dimensions of an fbx model in a threejs world?

Hi!
Something like that:

let box3 = new THREE.Box3().setFromObject( _your_fbx_model_ );
let size = new THREE.Vector3();
box3.getSize(size);

size's x, y, z are width, height, depth.

2 Likes