Get Model Size

I want to get model size, and I use getBounds function. It return bound shpere, but my model is box-like. :open_mouth:
How do I return a bound Box?
Or another method to get model size

getTightBounds() is probably what you want.

In C++ I use “calc_tight_bounds(min, max)” what’s probably the same thing, except for the way the min,max is filled (passed by arg or returned)

It work, Thanks