fillet#
- Object3d.fillet(vertices: list = None, edges: list = None, radius: float = 0.1, setback: float = 0.0) bool#
Add a fillet to the selected edges in 3D/vertices in 2D.
- Parameters:
- Returns:
- bool
Truewhen successful,Falsewhen failed.
References
>>> oEditor.Fillet
Examples
>>> from ansys.aedt.core.modeler.cad.object_3d import Object3d >>> obj = Object3d() >>> obj.fillet(vertices=["Box1"], edges=[1])