Anonymous (not verified) Sat, 10/02/2004 - 02:28 Forums: Other usage issuesIs this already done in OCC or I have to do it by myself? Rob Bachrach Mon, 10/04/2004 - 14:12 If you create an edge from your spline, you can use: GProp_GProps myProps; BRepGProp::LinearProperties(myEdge, myProps); Standard_Real fLength = myProps.Mass(); Log in to post comments tom jones (not verified) Tue, 10/05/2004 - 02:31 Thanks, I will try that. Log in to post comments
Mon, 10/04/2004 - 14:12
If you create an edge from your spline, you can use:
GProp_GProps myProps;
BRepGProp::LinearProperties(myEdge, myProps);
Standard_Real fLength = myProps.Mass();
Tue, 10/05/2004 - 02:31
Thanks, I will try that.