Go to: Synopsis. Return value. Related. Flags. MEL examples.
projectCurve [-caching boolean] [-constructionHistory boolean] [-direction linear linear linear] [-directionX linear] [-directionY linear] [-directionZ linear] [-name string] [-nodeState int] [-object boolean] [-range 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.
string[] | Object name and node name |
In query mode, return type is based on queried flag.
Long name (short name) | Argument types | Properties | ||
---|---|---|---|---|
-direction(-d)
|
linear linear linear
|
![]() ![]() ![]() |
||
|
||||
-directionX(-dx)
|
linear
|
![]() ![]() ![]() |
||
|
||||
-directionY(-dy)
|
linear
|
![]() ![]() ![]() |
||
|
||||
-directionZ(-dz)
|
linear
|
![]() ![]() ![]() |
||
|
||||
-tolerance(-tol)
|
linear
|
![]() ![]() ![]() |
||
|
||||
-useNormal(-un)
|
boolean
|
![]() ![]() ![]() |
||
|
||||
Common flags | ||||
-constructionHistory(-ch)
|
boolean
|
![]() |
||
|
||||
-name(-n)
|
string
|
![]() |
||
|
||||
-object(-o)
|
boolean
|
![]() |
||
|
||||
-range(-rn)
|
boolean
|
![]() |
||
|
||||
Advanced flags | ||||
-caching(-cch)
|
boolean
|
![]() ![]() ![]() |
||
|
||||
-nodeState(-nds)
|
int
|
![]() ![]() ![]() |
||
|
![]() |
![]() |
![]() |
![]() |
// 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;