
Wed, 07/14/2004 - 13:12
Forums:
I created a shape(cube) using open cascade, and I use VolumeProperties to get its volume. It was correct.
however, after I exported it to iges file, and tried to load it in again. The volume value was changed and became negative. anyone has an idea what is going on?
thanks!
Thu, 07/15/2004 - 11:36
The face orientation is different.
Tue, 07/27/2004 - 09:21
Ivan
It works thanks a lot
Fri, 05/15/2009 - 05:21
Dear Gray
Can you tell me how to calculate shape volume and which functions you use
Thanks
Hesham
Fri, 05/15/2009 - 05:21
Dear Gray
Can you tell me how to calculate shape volume and which functions you use
Thanks
Hesham
Fri, 05/15/2009 - 14:39
Take a look at BRepGProp::VolumeProperties.
Example:
GProp_GProps massProps;
BRepGProp::VolumeProperties(myShape, massProps);
Standard_Real myVolume = massProps.Mass();
Mon, 05/18/2009 - 05:19
Dear Rob
I would like to thank you really about your reply
Best
Hesham