I have some Object in activedocument that I want to find the center point of them,
so the question is:
Can I draw one bounding box around all of them?
thanks.
I have some Object in activedocument that I want to find the center point of them,
so the question is:
Can I draw one bounding box around all of them?
thanks.
just loop over all boundingboxes and union them
https://developer.rhino3d.com/api/RhinoCommon/html/M_Rhino_Geometry_BoundingBox_Union.htm
thanks tom,
but does it work if they are far from each other?
yes. (as far is i understand)
don t get confused with boolean union for geometry / polysurfaces
A bounding-box is more a “rectangular space requirement” - also a point-cloud can have a boundingbox.
Thanks a lot.