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

Synopsis

untrim [-constructionHistory boolean] [-curveOnSurface boolean] [-name string] [-object boolean] [-polygon int] [-range boolean] [-rebuild boolean] [-replaceOriginal boolean] [-untrimAll boolean] surfaceName

untrim is undoable, queryable, and editable.

Untrim the surface.

Flags

constructionHistory, curveOnSurface, name, object, polygon, range, rebuild, replaceOriginal, untrimAll
Long name (short name) [argument types] Properties
-name(-n) string create
Name the resulting object
-constructionHistory(-ch) boolean create
Turn the construction history on or off (not available in all commands)
-object(-o) boolean create
Create the result, or just the dependency node (not available in all commands)
-replaceOriginal(-rpo) boolean create
Create "in place" (i.e., replace) (not available in all commands)
-curveOnSurface(-cos) boolean create
If possible, create 2D curve as a result (not available in all commands)
-polygon(-po) int create
The value of this argument controls the type of the object created by this operation (not available in all commands)
  • 0: nurbs surface
  • 1: polygon (use nurbsToPolygonsPref to set the parameters for the conversion)
  • 2: subdivision surface (use nurbsToSubdivPref to set the parameters for the conversion)
  • 3: Bezier surface
  • 4: subdivision surface solid (use nurbsToSubdivPref to set the parameters for the conversion)
-range(-rn) boolean create
Force a curve range on complete input curve (not available in all commands)
-rebuild(-rb) boolean create
Rebuild the input curve(s) before using them in the operation. Use nurbsCurveRebuildPref to set the parameters for the conversion. (not available in all commands)
-untrimAll(-all) boolean queryedit
if true, untrim all the trims for the surface else untrim only the last trim

In query mode, this flag needs a value.


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

Return value


[string[]] (object name and node name)

Related

intersect, projectCurve, trim

MEL examples

// Untrim surface with history.
untrim -ch on surface;

// Untrims surface without history.
untrim -ch off surface;