Go to: Synopsis. Return value. Related. Flags. Python examples.
circularFillet(
[surface] [surface]
, [caching=boolean], [constructionHistory=boolean], [curveOnSurface=boolean], [name=string], [nodeState=int], [object=boolean], [positionTolerance=float], [primaryRadius=linear], [secondaryRadius=linear], [tangentTolerance=float])
Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.
circularFillet is undoable, queryable, and editable.
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.
string[] | Object name, node name. |
In query mode, return type is based on queried flag.
freeFormFillet
caching, constructionHistory, curveOnSurface, name, nodeState, object, positionTolerance, primaryRadius, secondaryRadius, tangentTolerance
Long name (short name) |
Argument types |
Properties |
|
positionTolerance(pt)
|
float
|
|
|
C(0) Tolerance For Fillet Surface
Default: 0.01
|
|
primaryRadius(pr)
|
linear
|
|
|
primary Radius
Default: 1.0
|
|
secondaryRadius(sr)
|
linear
|
|
|
secondary Radius
Default: 1.0
|
|
tangentTolerance(tt)
|
float
|
|
|
G(1) Tolerance For Fillet Surface
Default: 0.01
|
|
Common flags |
constructionHistory(ch)
|
boolean
|
|
|
Turn the construction history on or off.
|
|
curveOnSurface(cos)
|
boolean
|
|
|
If possible, create 2D curve as a result.
|
|
name(n)
|
string
|
|
|
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.
|
|
object(o)
|
boolean
|
|
|
Create the result, or just the dependency node.
|
|
Advanced flags |
caching(cch)
|
boolean
|
|
|
Modifies the node caching mode. See the node documentation for more information.
Note: For advanced users only.
|
|
nodeState(nds)
|
int
|
|
|
Modifies the node state. See the node documentation for more information.
Note: For advanced users only.
|
|
Flag can appear in Create mode of command
|
Flag can appear in Edit mode of command
|
Flag can appear in Query mode of command
|
Flag can have multiple arguments, passed either as a tuple or a list.
|
import maya.cmds as cmds
cmds.circularFillet( 'surface1', 'surface2', ch=True, pr=-1.0, sr=1.0, cos=False )
cmds.circularFillet( 'surface3', 'surface4', ch=False, pr=-1.0, sr=2.0, cos=True, pt=0.001 )