is_on_bounding#
- FacePrimitive.is_on_bounding(tolerance: float = 1e-09) bool#
Check if the face is on bounding box or Not.
- Parameters:
- tolerance
float,optional Tolerance of check between face center and bounding box.
- tolerance
- Returns:
- bool
True if the face is on bounding box. False otherwise.
Examples
>>> from ansys.aedt.core.modeler.cad.elements_3d import FacePrimitive >>> obj = FacePrimitive() >>> obj.is_on_bounding(tolerance=1.0)