Go to: Synopsis. Flags. Return value. Related. MEL examples.
projectCurve [-constructionHistory boolean] [-curveOnSurface boolean] [-direction float float float] [-directionX linear] [-directionY linear] [-directionZ linear] [-name string] [-object boolean] [-polygon int] [-range boolean] [-rebuild boolean] [-replaceOriginal boolean] [-tolerance linear] [-useNormal boolean]
[curve] [surface]
projectCurve is undoable, queryable, and editable.
The projectCurve command creates curves on surface where all selected curves project onto the selected surfaces. Projection can be done using the surface normals or the user can specify the vector to project along. Note: the user does not have to specify the curves and surfaces in any particular order in the command line.Long name (short name) | [argument types] | Properties | ||
---|---|---|---|---|
-direction(-d)
|
float float float
|
![]() ![]() |
||
|
||||
-directionX(-dx)
|
linear
|
![]() ![]() |
||
|
||||
-directionY(-dy)
|
linear
|
![]() ![]() |
||
|
||||
-directionZ(-dz)
|
linear
|
![]() ![]() |
||
|
||||
-tolerance(-tol)
|
linear
|
![]() ![]() |
||
|
||||
-useNormal(-un)
|
boolean
|
![]() ![]() |
||
|
||||
-name(-n)
|
string
|
![]() |
||
|
||||
-constructionHistory(-ch)
|
boolean
|
![]() |
||
|
||||
-object(-o)
|
boolean
|
![]() |
||
|
||||
-replaceOriginal(-rpo)
|
boolean
|
![]() |
||
|
||||
-curveOnSurface(-cos)
|
boolean
|
![]() |
||
|
||||
-polygon(-po)
|
int
|
![]() |
||
|
||||
-range(-rn)
|
boolean
|
![]() |
||
|
||||
-rebuild(-rb)
|
boolean
|
![]() |
||
|
![]() |
![]() |
![]() |
![]() |
// Project the active curve onto the active surface using the surface // normals: projectCurve -un yes; // Project this curve onto the nurbs sphere using the specified direction: projectCurve -d 0.0 6.0 0.0 curve1 nurbsSphere1;