Geometry - are BoundingBoxes cached?

if i do this at several locations of my code:

 BoundingBox bbox = mesh.GetBoundingBox(true);

will the BoundingBox be re-evalutated each time ?
or does Geometry cache it s BoundingBox once it was questioned ? (and only update it on geometry changes )
Is the behaviour different for Curve, …, Mesh, Surface, Brep ?

Yes, the bounding box is re-evaluated each time for a mesh

2 Likes

thanks for that info