Go to: Synopsis. Return value. MEL examples.

Synopsis

isAnimCurve (string $object)

Determines whether or not the specified object is an animCurve (i.e. its nodeType is one of animCurveTL, animCurveTA, animCurveTU, animCurveTT, animCurveUL, animCurveUA, animCurveUU or animCurveUT)

Return value

int : true if the object is an animCurve, false if not

Arguments

Variable Name Variable Type Description
$objectstring: The name of the object

MEL examples

  polySphere;
  string $sel[] = `ls -sl`;
  isAnimCurve($sel[0]);