Go to: Synopsis. Return value. Related. Flags. MEL examples.

Synopsis

circularFillet [-caching boolean] [-constructionHistory boolean] [-curveOnSurface boolean] [-name string] [-nodeState int] [-object boolean] [-positionTolerance float] [-primaryRadius linear] [-secondaryRadius linear] [-tangentTolerance float] [surface] [surface]

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.

Return value

string[]Object name, node name.

In query mode, return type is based on queried flag.

Related

freeFormFillet

Flags

caching, constructionHistory, curveOnSurface, name, nodeState, object, positionTolerance, primaryRadius, secondaryRadius, tangentTolerance
Long name (short name) Argument types Properties
-primaryRadius(-pr) linear createqueryedit
primary Radius
Default: 1.0
-secondaryRadius(-sr) linear createqueryedit
secondary Radius
Default: 1.0
-positionTolerance(-pt) float createqueryedit
C(0) Tolerance For Fillet Surface
Default: 0.01
-tangentTolerance(-tt) float createqueryedit
G(1) Tolerance For Fillet Surface
Default: 0.01
Advanced flags
-caching(-cch) boolean createqueryedit
Modifies the node caching mode. See the node documentation for more information.
Note: For advanced users only.
-nodeState(-nds) int createqueryedit
Modifies the node state. See the node documentation for more information.
Note: For advanced users only.
Common flags
-name(-n) string create
Name the resulting object
-constructionHistory(-ch) boolean create
Turn the construction history on or off
-object(-o) boolean create
Create the result, or just the dependency node
-curveOnSurface(-cos) boolean create
If possible, create 2D curve as a result

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 be used more than once in a command.

MEL examples

circularFillet -ch true -pr -1.0 -sr 1.0 -cos false surface1 surface2 ;
circularFillet -ch false -pr -1.0 -sr 2.0 -cos true -pt 0.001 surface3 surface4 ;