Go to: Synopsis. Return value. MEL examples.

Synopsis

paramDimension [curve|surface]

paramDimension is undoable, NOT queryable, and NOT editable.

This command is used to create a param dimension to display the parameter value of a curve/surface at a specified point on the curve/surface.

Return value

stringName of the paramDimension shape node created

MEL examples

curve -d 3 -p -9.3 0 3.2 -p -4.2 0 5.0 -p 6.0 0 8.6 -p 2.1 0 -1.9 -k 0 -k 0 -k 0 -k 1 -k 2 -k 2;
paramDimension curveShape1.u[0.5];
// displays where u = 0.5 is on the curve
sphere;
paramDimension nurbsSphere1.uv[0.5][0.5];
// displays where u = 0.5 and v = 0.5 is on the surface