DiscussionsIssue archiveOther usage issues

Archived discussion

How to get the size of a surface?

Other usage issuesTue, 03/30/2004 - 06:301 reply

Browse this forum
QuestionAuthor

How to get the size of a surface?
Thanks for any help!

Discussion

1 archived reply

Posts are displayed in their archived order.

01Author

I have found it!

TopoDS_Shape S = BRepBuilderAPI_MakeFace(BSplineSurf).Face();
GProp_GProps System;
BRepGProp::SurfaceProperties(S,System);
Standard_Real Area = System.Mass();