How to use BoundingBox

Version 5 of Rhino.
I need to find the width of an object. I can create a Bounding box around the object. It looks like from experimentation that the relative array positions are consistent regardless of view position. So it looks like I can just get the distance between array positions 0 and 1, in my case. Is there a smarter way to do this? Thanks all.

if you use the Box Edit panel on the right, you can see the bounding box dimmension just selecting the object
image

1 Like

Hello - it sounds like the context of your question involves a script, is that correct? RhinoScript?

-Pascal

Yes, Pascal, using rhinoscript vb.

No, that’s as good as any. Rhino.Distance(bb(0),bb(1))

1 Like