pycatia.part_interfaces.const_rad_edge_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.const_rad_edge_fillet.ConstRadEdgeFillet(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
PartInterfaces.EdgeFillet
ConstRadEdgeFillet

Represents the edge fillet shape with a constant radius.
The resulting shape is made up of edge fillets built with a constant
radius.
add_object_to_fillet(i_object_to_fillet: Reference) None

Note

CAA V5 Visual Basic Help (2020-07-06 14:02:20.222384))
o Sub AddObjectToFillet(Reference iObjectToFillet)

Adds a new sub-element to be filleted. This sub-element is usually an
edge.

Parameters:

iObjectToFillet
The sub-element to be filleted
The following

Boundary object is supported: TriDimFeatEdge.

Example:
The following example adds a new geometrical element element to be filleted
by the constant radius edge fillet firstCstEdgeFillet:

firstCstEdgeFillet.AddObjectToFillet(element)
Parameters:

i_object_to_fillet (Reference) –

Return type:

None

property objects_to_fillet: References

Note

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

Returns the collection of reference elements to be
filleted.

Example:
The following example returns in elements the reference elements to be
filleted of the constant radius edge fillet
firstCstEdgeFillet:

Set elements = firstCstEdgeFillet.ObjectsToFillet
Return type:

References

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 edge fillet constant radius.

Example:
The following example returns in radius the radius of the constant
radius edge fillet firstCstEdgeFillet:

Set radius = firstCstEdgeFillet.Radius
Return type:

Length

withdraw_object_to_fillet(i_object_to_withdraw: Reference) None

Note

CAA V5 Visual Basic Help (2020-07-06 14:02:20.222384))
o Sub WithdrawObjectToFillet(Reference iObjectToWithdraw)

Withdraws a sub-element from those to be filleted. This sub-element is
usually an edge.

Parameters:

iObjectToWithdraw
The sub-element to withdraw
The following

Boundary object is supported: TriDimFeatEdge.

Example:
The following example withdraws the geometrical element element from those
to be filleted by the constant radius edge fillet
firstCstEdgeFillet:

firstCstEdgeFillet.WithdrawObjectToFillet(element)
Parameters:

i_object_to_withdraw (Reference) –

Return type:

None