pycatia.part_interfaces.tritangent_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.tritangent_fillet.TritangentFillet(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
TritangentFillet

The Tritangent Fillet feature : a fillet is built between 3 faces,
2 faces will be relimited, the third one (“face to remove”)
will
be used for fillet tangency ; this face will disappear within the resulting
shape.
property face_to_remove: Reference

Note

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

Returns the face to be removed by the tritangent fillet.

Returns:
oFaceToRemove The face to be removed by the fillet (@see CATIAReference
for more information)

Example:
The following example returns in removedFace the face to be removed
of
tritangent fillet firstTritangentFillet:

Set removedFace = firstTritangentFillet.FaceToRemove
Return type:

Reference

property first_face: Reference

Note

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

Returns the first face limiting the tritangent fillet.

Returns:
oFirstFace The limiting face (@see CATIAReference for more
information)

Example:
The following example returns in face1 the first limiting face
of
tritangent fillet firstTritangentFillet:

Set face1 = firstTritangentFillet.FirstFace
Return type:

Reference

property second_face: Reference

Note

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

Returns the second face limiting the tritangent fillet.

Returns:
oSecondFace The limiting face (@see CATIAReference for more
information)

Example:
The following example returns in face2 the second limiting face
of
tritangent fillet firstTritangentFillet:

Set face2 = firstTritangentFillet.SecondFace
Return type:

Reference