Getting a model's size (C++)

Hi all,

do anyone of you by any chance know how to obtain the length, width, height of a loaded model?

For example:
pandaActor = window->load_model(framework.get_models(),“panda-model”);

is there any way to get the dimensions of the model?

Help is greatly appreciated! :smiley:

Try get_bounds (optionally, calc_tight_bounds)

The function get_bounds will return a BoundingVolume, where you can extract the actual size from.