All Frameworks  Object Hierarchy  This Framework  Indexes   

ConstRadEdgeFillet (Object)

Represents the edge fillet shape with a constant radius.
The resulting shape is made up of edge fillets built with a constant radius.

Property Index

ObjectsToFillet
Returns the collection of reference elements to be filleted.
Radius
Returns the edge fillet constant radius.

Method Index

AddObjectToFillet
Adds a new sub-element to be filleted.
WithdrawObjectToFillet
Withdraws a sub-element from those to be filleted.

Properties


o Property ObjectsToFillet() As (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
 
o Property Radius() As (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
 

Methods


o Sub AddObjectToFillet( 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)
 
o Sub WithdrawObjectToFillet( 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)
 

Copyright © 2003, Dassault Systèmes. All rights reserved.