FaceLoop
#
- class ansys.geometry.core.designer.face.FaceLoop(type: FaceLoopType, length: pint.Quantity, min_bbox: ansys.geometry.core.math.point.Point3D, max_bbox: ansys.geometry.core.math.point.Point3D, edges: list[ansys.geometry.core.designer.edge.Edge])#
Provides an internal class holding the face loops defined.
- Parameters:
- type
FaceLoopType
Type of loop.
- length
Quantity
Length of the loop.
- min_bbox
Point3D
Minimum point of the bounding box containing the loop.
- max_bbox
Point3D
Maximum point of the bounding box containing the loop.
- edges
list
[Edge
] Edges contained in the loop.
- type
Notes
This class is to be used only when parsing server side results. It is not intended to be instantiated by a user.
Overview#
Import detail#
from ansys.geometry.core.designer.face import FaceLoop
Property detail#
- property FaceLoop.type: FaceLoopType#
Type of the loop.
- property FaceLoop.length: pint.Quantity#
Length of the loop.
- property FaceLoop.min_bbox: ansys.geometry.core.math.point.Point3D#
Minimum point of the bounding box containing the loop.
- property FaceLoop.max_bbox: ansys.geometry.core.math.point.Point3D#
Maximum point of the bounding box containing the loop.
- property FaceLoop.edges: list[ansys.geometry.core.designer.edge.Edge]#
Edges contained in the loop.