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 ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 
Modifies the node caching mode. See the node documentation for more information.Note:For advanced users only.
constructionHistory (ch) bool ../../../_images/create.gif
 
Turn the construction history on or off
curveOnSurface (cos) bool ../../../_images/create.gif
 
If possible, create 2D curve as a resultFlag can appear in Create mode of commandFlag can have multiple arguments, passed either as a tuple or a list.
name (n) unicode ../../../_images/create.gif
 
Name the resulting object
nodeState (nds) int ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 
Modifies the node state. See the node documentation for more information.Note:For advanced users only.Common flags
object (o) bool ../../../_images/create.gif
 
Create the result, or just the dependency node
positionTolerance (pt) float ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 
C(0) Tolerance For Fillet SurfaceDefault:0.01
primaryRadius (pr) float ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 
primary RadiusDefault:1.0
secondaryRadius (sr) float ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 
secondary RadiusDefault:1.0
tangentTolerance (tt) float ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 
G(1) Tolerance For Fillet SurfaceDefault:0.01Advanced flags

Derived from mel command maya.cmds.circularFillet

Example:

import pymel.core as pm

import maya.cmds as cmds

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 )

Previous topic

pymel.core.modeling.circle

Next topic

pymel.core.modeling.closeCurve

Core

Core Modules

Other Modules

This Page