Command to set the crease values on the edges or vertices of a poly. The crease values are used by the smoothing algorithm.
Long name (short name) | Argument Types | Properties | |
---|---|---|---|
createHistory (ch) | bool | ||
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. |
|||
operation (op) | int | ||
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 commandFlag can have multiple arguments, passed either as a tuple or a list. |
|||
relativeValue (rv) | float | ||
|
|||
value (v) | float | ||
|
|||
vertexValue (vv) | float | ||
|
Derived from mel command maya.cmds.polyCrease
Example:
import pymel.core as pm
import maya.cmds as cmds
# To set a crease value of 0.9 on the selected edges or vertices
pm.polyCrease( value=0.9 )