singleProfileBirailSurface
Go to: Synopsis. Flags. Return value. Related. Python examples.
singleProfileBirailSurface(
[profile1] [ rail1] [rail2]
, [constructionHistory=boolean], [curveOnSurface=boolean], [name=string], [object=boolean], [polygon=int], [range=boolean], [rebuild=boolean], [replaceOriginal=boolean], [sweepStyle=int], [tangentContinuityProfile1=boolean], [transformMode=int])
Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.
singleProfileBirailSurface is undoable, queryable, and editable.
This cmd creates a railed surface by sweeping the profile
curve along the two rail curves. One of the requirements for
surface creation is the profile curve must intersect the two
rail curves. If the profile is a surface curve i.e. isoparm,
curve on surface or trimmed edge then tangent continuity across
the surface underlying the profile may be enabled using the flag -tp1 true.
constructionHistory, curveOnSurface, name, object, polygon, range, rebuild, replaceOriginal, sweepStyle, tangentContinuityProfile1, transformMode
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)
extrude
import maya.cmds as cmds
#Create a surface by sweeping profile "curve1" along the two rails
#given by isoparms surface1.u[0] and surface2.u[0.5].
cmds.singleProfileBirailSurface( 'curve1', 'surface1.u[0]', 'surface2.u[0.5]', ch=True )
# create a tangent continuous surface across the profile.
cmds.singleProfileBirailSurface( 'surface1.u[0]', 'curve1', 'curve2', ch=True, tp1=True )
Return to Autodesk Index