pycatia.part_interfaces.face_fillet

Module initially auto generated using V5Automation files from CATIA V5 R28 on 2020-06-11 12:40:47.360445

Warning

The notes denoted “CAA V5 Visual Basic Help” are to be used as reference only. They are there as a guide as to how the visual basic / catscript functions work and thus help debugging in pycatia.

class pycatia.part_interfaces.face_fillet.FaceFillet(com_object)

Note

CAA V5 Visual Basic Help (2020-06-11 12:40:47.360445)

System.IUnknown
System.IDispatch
System.CATBaseUnknown
System.CATBaseDispatch
System.AnyObject
MecModInterfaces.Shape
PartInterfaces.DressUpShape
PartInterfaces.Fillet
FaceFillet

Represents the face fillet shape.
A face fillet shape is built between two faces with a fillet
radius.
property first_face: Reference

Note

CAA V5 Visual Basic Help (2020-07-06 14:02:20.222384)
o Property FirstFace() As Reference

Returns or sets the first limiting face.
To set the property, you can use the following Boundary object:
Face.

Example:
The following example returns in face1 the first limiting face of the
face fillet firstFaceFillet, and then sets it to
NewFace1:

Set face1 = firstFaceFillet.FirstFace
firstFaceFillet.FirstFace = NewFace1
Return type:

Reference

property radius: Length

Note

CAA V5 Visual Basic Help (2020-07-06 14:02:20.222384)
o Property Radius() As Length (Read Only)

Returns the face fillet radius.

Example:
The following example returns in radius the fillet radius of the face
fillet firstFaceFillet:

Set radius = firstFaceFillet.Radius
Return type:

Length

property second_face: Reference

Note

CAA V5 Visual Basic Help (2020-07-06 14:02:20.222384)
o Property SecondFace() As Reference

Returns or sets the second limiting face.
To set the property, you can use the following Boundary object:
Face.

Example:
The following example returns in face2 the second limiting face of the
face fillet firstFaceFillet, and then sets it to
NewFace2:

Set face2 = firstFaceFillet.SecondFace
firstFaceFillet.SecondFace = NewFace2
Return type:

Reference