pymel.core.modeling.filletCurve

filletCurve(*args, **kwargs)

The curve fillet command creates a fillet curve between two curves. If no objects are specified in the command line, then the first two active curves are used. The fillet created can be circular (with a radius) or freeform (with a type of tangent or blend).

Flags:
Long name (short name) Argument Types Properties
bias (b) float ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 
Adjusting the bias value causes the fillet curve to be skewed to one of the input curves. Available only if blendControl is true.Default:0.0
blendControl (bc) bool ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 
If true then depth and bias can be controlled. Otherwise, depth and bias are not available options.Default:falseAdvanced flags
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.
circular (cir) bool ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 
Curve fillet will be created as circular if true or freeform if false.Default:true
constructionHistory (ch) bool ../../../_images/create.gif
 
Turn the construction history on or off
curveParameter1 (cp1) float ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 
Parameter where fillet curve will contact the primary input curve.Default:0.0
curveParameter2 (cp2) float ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 
Parameter where fillet curve will contact the secondary input curve.Default:0.0
depth (d) float ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 
Adjusts the depth of the fillet curve. Available only if blendControl is true.Default:0.5
freeformBlend (fb) bool ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 
The freeform type is blend if true or tangent if false. Available if the fillet type is freeform.Default:false
join (jn) bool  
   
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
radius (r) float ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 
The radius if creating a circular fillet.Default:1.0
replaceOriginal (rpo) bool ../../../_images/create.gif
 
Create “in place” (i.e., replace)Flag can appear in Create mode of commandFlag can have multiple arguments, passed either as a tuple or a list.
trim (t) bool  
   

Derived from mel command maya.cmds.filletCurve

Example:

import pymel.core as pm

import maya.cmds as cmds

# Create a circular fillet (by default) having radius 2.5 between the
# active curves:
pm.filletCurve( r=2.5 )

# Create a freeform curve fillet between the two specified curves at
# these parameter values:
pm.filletCurve( 'curve1', 'curve2', cir=True, cp1=0.5, cp2=2.0 )

Previous topic

pymel.core.modeling.extrude

Next topic

pymel.core.modeling.filterExpand

Core

Core Modules

Other Modules

This Page