Go to: Synopsis. Return value. Flags. MEL examples.
pointOnSurface [-constructionHistory boolean] [-normal] [-normalizedNormal] [-normalizedTangentU] [-normalizedTangentV] [-parameterU float] [-parameterV float] [-position] [-tangentU] [-tangentV] [-turnOnPercentage boolean]
[objects]
pointOnSurface is undoable, queryable, and editable.
This command returns information for a point on a surface. If no flag is specified, this command assumes p/position by default. If more than one flag is specifed, then a string array is returned.
float[3] | |
string |
In query mode, return type is based on queried flag.
Long name (short name) | Argument types | Properties | ||
---|---|---|---|---|
-normal(-no)
|
|
![]() ![]() ![]() |
||
|
||||
-normalizedNormal(-nn)
|
|
![]() ![]() ![]() |
||
|
||||
-normalizedTangentU(-ntu)
|
|
![]() ![]() ![]() |
||
|
||||
-normalizedTangentV(-ntv)
|
|
![]() ![]() ![]() |
||
|
||||
-parameterU(-u)
|
float
|
![]() ![]() |
||
|
||||
-parameterV(-v)
|
float
|
![]() ![]() |
||
|
||||
-position(-p)
|
|
![]() ![]() ![]() |
||
|
||||
-tangentU(-tu)
|
|
![]() ![]() ![]() |
||
|
||||
-tangentV(-tv)
|
|
![]() ![]() ![]() |
||
|
||||
-turnOnPercentage(-top)
|
boolean
|
![]() ![]() |
||
|
||||
Common flags | ||||
-constructionHistory(-ch)
|
boolean
|
![]() |
||
|
![]() |
![]() |
![]() |
![]() |
pointOnSurface -u 0.5 -v 1.0 -position surface1; // Returns the (x,y,z) position of the surface at parameter (u=0.5,v=1.0). string $infoNode = `pointOnSurface -ch on -u 0.55 -v 0.33 surface1`; getAttr ($infoNode + ".position"); // returns the position // The pointOnSurface command returns a string which is the name of // a new pointOnSurfaceInfo dependency node. With this node connected // to the surface, the output values of the pointOnSurfaceInfo node // are always current even if, for example, the surface parameters are // being animated.