
Tue, 08/07/2001 - 15:45
Forums:
Hi,
I'm quite new in CASCADE, and I would like to retrieve the bounded box from a Geom_BoundedSurface. I've tried with the TopoDS_Shape object and BRepBndLib::Add method, but results is computed on all the surface definition. I just want the bounded box for the bounded surface. I don't find solution in documentation yet..
thank you, Sebastien.
Tue, 08/07/2001 - 16:53
Try to use instead BRepBndLib::AddClose to see if it fits your needs. BRepBndLib::Add gives a very rough bounding box.
Thu, 08/09/2001 - 15:28
Thank you, I use another method which seems to do that I want by using BndLib_AddSurface::Add function with the GeomAdaptor_Surface from my TopoDS_Face, and his bounds. I don't try yet AddClose methods, but I will.