pymel.core.modeling.circularFillet¶
- circularFillet(*args, **kwargs)¶
The cmd is used to compute the rolling ball surface fillet ( circular fillet ) between two given NURBS surfaces. To generate trim curves on the surfaces, use -cos true.
Flags:
Long Name / Short Name Argument Types Properties caching / cch bool Modifies the node caching mode. See the node documentation for more information. Note:For advanced users only. constructionHistory / ch bool Turn the construction history on or off. curveOnSurface / cos bool If possible, create 2D curve as a result. frozen / fzn bool name / n unicode Sets the name of the newly-created node. If it contains namespace path, the new node will be created under the specified namespace; if the namespace does not exist, it will be created. nodeState / nds int Modifies the node state. See the node documentation for more information. Note:For advanced users only. Flag can have multiple arguments, passed either as a tuple or a list. object / o bool Create the result, or just the dependency node. Advanced flags positionTolerance / pt float C(0) Tolerance For Fillet Surface Default:0.01 primaryRadius / pr float primary Radius Default:1.0 secondaryRadius / sr float secondary Radius Default:1.0 tangentTolerance / tt float G(1) Tolerance For Fillet Surface Default:0.01 Common flags Derived from mel command maya.cmds.circularFillet
Example:
import pymel.core as pm pm.circularFillet( 'surface1', 'surface2', ch=True, pr=-1.0, sr=1.0, cos=False ) pm.circularFillet( 'surface3', 'surface4', ch=False, pr=-1.0, sr=2.0, cos=True, pt=0.001 )