This functionality is provided as a preview
of intended future API capabilities. You are encouraged to use it and report any problems or suggestions using the
Fusion API and Scripts forum.
Because this is a preview of future functionality, there is the possibility that it will change, which will possibly
break any existing programs that use this functionality. Because of that, you should never deliver any programs that use
any preview capabilities. For a distributed program, you should wait until it has moved from preview to released state.
Defined in namespace "adsk::fusion" and the header file is <Fusion/BRep/BRepBody.h>
Description
Finds the thickness of the body at the specified face by casting a ray from the face along its inward normal and measuring the distance to the first opposite face of the body that is hit.
// Call the function. Ptr<BRepBody> returnValue = bRepBody_var->findThicknessAtFace(face, thickness, hitPoint);
Return Value
Type
Description
boolean
Returns true if the thickness was successfully determined. Returns false if it could not be determined, for example if the face is non-planar or has no parallel opposite face.
An optional Point3D that specifies the point on the face from which to cast the ray. The point must lie on the given face. If not specified, a point is automatically chosen on the face.
This is an optional argument whose default value is null.