pymel.core.modeling.polyCrease¶
- polyCrease(*args, **kwargs)¶
Command to set the crease values on the edges or vertices of a poly. The crease values are used by the smoothing algorithm.
Flags:
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. 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. 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. Flag can have multiple arguments, passed either as a tuple or a list. Derived from mel command maya.cmds.polyCrease
Example:
import pymel.core as pm # To set a crease value of 0.9 on the selected edges or vertices pm.polyCrease( value=0.9 )