Go to: Return value. Related commands. Flags. Examples.

Synopsis

singleProfileBirailSurface [flags] [profile1] [ rail1] [rail2]

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.

Return value

[string[]] (object name and node name)

Related commands

extrude

Flags

constructionHistory, curveOnSurface, name, object, polygon, range, rebuild, replaceOriginal, sweepStyle, tangentContinuityProfile1, transformMode

Long name (short name)[argument types]Properties
-tangentContinuityProfile1 (-tp1) booleanqueryedit
Need to be tangent continuous across the profile. The profile must be a surface curve.
Default: false
-sweepStyle (-ss) integerqueryedit
sweep style for Profile ( Natural, View ). Only Natural is supported.
Default: 0
-transformMode (-tm) integerqueryedit
transform mode ( Non proportional, proportional ). Non proportional is default value.
Default: 0
-name (-n) stringcreate
Name the resulting object
-constructionHistory (-ch) booleancreate
Turn the construction history on or off (not available in all commands)
-object (-o) booleancreate
Create the result, or just the dependency node (not available in all commands)
-replaceOriginal (-rpo) booleancreate
Create "in place" (i.e., replace) (not available in all commands)
-curveOnSurface (-cos) booleancreate
If possible, create 2D curve as a result (not available in all commands)
-polygon (-po) integercreate
The value of this argument controls the type of the object created by this operation (not available in all commands) - 0: nurbs surface - 1: polygon (use nurbsToPolygonsPref to set the parameters for the conversion) - 2: subdivision surface (use nurbsToSubdivPref to set the parameters for the conversion) - 3: Bezier surface - 4: subdivision surface solid (use nurbsToSubdivPref to set the parameters for the conversion)
-range (-rn) booleancreate
Force a curve range on complete input curve (not available in all commands)
-rebuild (-rb) booleancreate
Rebuild the input curve(s) before using them in the operation. Use nurbsCurveRebuildPref to set the parameters for the conversion. (not available in all commands)

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 be used more than once in a command

Examples

	//Create a surface by sweeping profile "curve1" along the two rails
  //given by isoparms surface1.u[0] and surface2.u[0.5].
	singleProfileBirailSurface -ch on curve-1 surface1.u[0] surface2.u[0.5] ;
 
	// create a tangent continuous surface across the profile.
	singleProfileBirailSurface -ch on -tp1 true surface1.u[0] curve1 curve2 ;