multiProfileBirailSurface
Go to: Synopsis. Flags. Return value. Related. Python examples.
multiProfileBirailSurface(
[curve1] [curve2] [curve3...] [rail1] [rail2]
, [constructionHistory=boolean], [curveOnSurface=boolean], [name=string], [object=boolean], [polygon=int], [range=boolean], [rebuild=boolean], [replaceOriginal=boolean], [tangentContinuityProfile1=boolean], [tangentContinuityProfile2=boolean])
Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.
multiProfileBirailSurface is undoable, queryable, and editable.
The cmd creates a railed surface by sweeping the profile "curve1"
to profile "curve2", profile "curve2" to profile "curve3" and so on along
the two rail curves "rail1", "rail2". There must be atleast 3 profile curves followed
by the two rail curves. The profile curves must intersect the two rail
curves. The constructed may be made tangent continuous to the first and
last profile using the flags -tp1, -tp2 provided the profiles are surface
curves i.e. isoparms, curve on surface or trimmed edge.
constructionHistory, curveOnSurface, name, object, polygon, range, rebuild, replaceOriginal, tangentContinuityProfile1, tangentContinuityProfile2
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.
|
[string[]] (object name and node name)
doubleProfileBirailSurface, singleProfileBirailSurface
import maya.cmds as cmds
cmds.multiProfileBirailSurface( 'curve1', 'curve2', 'curve3', 'surface1.vn[0.5]', 'surface1.vn[1.0]', ch=True )
# tangent continuous surface across the first and last profile.
cmds.multiProfileBirailSurface( 'surface1.vn[0.5]', 'curve1', 'surface1.vn[1.0]', 'curve3', 'curve4', ch=False, tp1=True, tp2=True )
Return to Autodesk Index