pymel.core.modeling.reverseCurve

static modeling.reverseCurve(*args, **kwargs)

The reverseCurve command reverses the direction of a curve or curve-on-surface. A string is returned containing the pathname of the newly reversed curve and the name of the resulting dependency node. The reversed curve has the same parameter range as the original curve.

Flags:
Long name (short name) Argument Types Properties
caching (cch) bool ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 
Modifies the node caching mode. See the node documentation for more information. Note:For advanced users only.
constructionHistory (ch) bool ../../../_images/create.gif
 
Turn the construction history on or off
curveOnSurface (cos) bool ../../../_images/create.gif
 
If possible, create 2D curve as a result
name (n) unicode ../../../_images/create.gif
 
Name the resulting object
noChanges (nc) bool  
   
nodeState (nds) int ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 
Modifies the node state. See the node documentation for more information. Note:For advanced users only. Common flags
object (o) bool ../../../_images/create.gif
 
Create the result, or just the dependency node
range (rn) bool ../../../_images/create.gif
 
Force a curve range on complete input curve Flag can have multiple arguments, passed either as a tuple or a list.
replaceOriginal (rpo) bool ../../../_images/create.gif
 
Create in place(i.e., replace)

Derived from mel command maya.cmds.reverseCurve

Example:

import pymel.core as pm

pm.reverseCurve( 'curve1', constructionHistory=True )
# Reverses curve1 with construction history on.  The result will
# be a string array, where the first string is the name of the new
# reversed curve and the second string is the name of the new
# dependency node.

pm.reverseCurve( 'curve1', ch=False, replaceOriginal=True )
# Reverses curve1 without construction history, replacing the original.
# The result will be a string array, where the first string
# is the name of the curve (curve1).  Because history is off,
# no dependency node will be created.  The reversed curve will
# replace the original curve.

pm.reverseCurve( 'curve1', ch=True, rpo=True )
# Reverses curve1 with history, trying to replace the original.
# If curve1 was not a result of construction history, then this command
# will simply replace curve1 with the reversed curve.  No dependency
# node will be created.

# If curve1 was a result of construction history, then this command
# will insert a reverse dependency node before the curve.  eg.
# Before reverseCurve cmd:   curve0 ---" closeCurve DN ---" curve1
# After cmd:  curve0 ---" closeCurve DN ---" reverseCurve DN ---" curve1

# The result will be a string array , where the first string
# is the name of the curve (curve1) and the second name is the
# new dependency node.