Go to: Synopsis. Return value. Keywords.
Related. Flags.
Python examples.
polyCrease([createHistory=boolean], [operation=uint], [relativeValue=float], [value=float], [vertexValue=float])
Note: Strings representing object names and
arguments must be separated by commas. This is not depicted in the
synopsis.
polyCrease is undoable, queryable, and editable.
Command to set the crease values on the edges or vertices of a
poly. The crease values are used by the smoothing algorithm.
boolean |
Success or Failure. |
In query mode, return type is based on queried flag.
poly, crease, smooth, subdiv
polySmooth
createHistory, operation, relativeValue, value, vertexValue
Long name (short name) |
Argument types |
Properties |
createHistory(ch) |
boolean |
   |
|
For objects that have no construction history, this flag can be
used to force the creation of construction history for creasing. By
default, history is not created if the object has no history.
Regardless of this flag, history is always created if the object
already has history. |
|
value(v) |
float |
    |
|
Specifies the crease value for the selected edge components.
When specified multiple times, the values are assigned respectively
to the specified edges. |
|
vertexValue(vv) |
float |
    |
|
Specifies the crease value for the selected vertex components.
When specified multiple times, the values are assigned respectively
to the specified vertices. |
|
relativeValue(rv) |
float |
   |
|
Specifies a new relative value for all selected vertex and edge
components. This flag can not be used at the same time as either
the value or vertexValue flags. |
|
operation(op) |
uint |
   |
|
Operation to perform. Valid values are: 0: Crease the specified
components. 1: Remove the crease values for the specified
components. 2: Remove all crease values from the mesh. Default is
0. |
|
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
# To set a crease value of 0.9 on the selected edges or vertices
cmds.polyCrease( value=0.9 )