Looking for 3D model size inspector

Is there a way to find out which element of the model blows the file size (similar to bottleneck inspector in Grasshoper.)?
Normally, I check by the density of the isocurves but maybe there is a smarter (scripted?) method?

Hi Piotr - this script will let you check selected object’s memory estimate, according to Rhino, but you need to be suspicious first, it does not query all objects in the file.

Object memory estimate.py (1.5 KB)

This one will try to find the X largest objects and label them -

FindLargestObjects.py (4.2 KB)

To use the Python script use RunPythonScript, or a macro:

_-RunPythonScript "Full path to py file inside double-quotes"

These are somewhat tested…

-Pascal

Hi Pascal
Thanks a lot! This is fantastic when put to work - the exact thing I wanted.