Your Ad Here

Go to: Synopsis. Return value. Related. MEL examples.

Synopsis

dot <vector> <vector>

dot is undoable, queryable, and editable.

This command returns the dot product of two vectors.

Return value


float

Related

angle, cross, mag

MEL examples

vector $u=<<1,2,-2>>, $v=<<3,0,1>>;
$x=dot($u, $v);
// Result: 1 //
  

Return to Autodesk Index


Your Ad Here