Description:

Multiplies a vector by a number, having the effect of scaling it. (Provided for languages that do not support operator overloading. You can use the * operator otherwise)

Syntax:
public static Vector3d Multiply(
double t,
Vector3d vector
)
Parameters:
Returns:
Type: Vector3d
A new vector that is the original vector coordinate-wise multiplied by t.
Available since:
5.0

Description:

Multiplies a vector by a number, having the effect of scaling it. (Provided for languages that do not support operator overloading. You can use the * operator otherwise)

Syntax:
public static Vector3d Multiply(
Vector3d vector,
double t
)
Parameters:
Returns:
Type: Vector3d
A new vector that is the original vector coordinate-wise multiplied by t.
Available since:
5.0

Description:

Multiplies two vectors together, returning the dot product (or inner product). This differs from the cross product. (Provided for languages that do not support operator overloading. You can use the * operator otherwise)

Syntax:
public static double Multiply(
Vector3d vector1,
Vector3d vector2
)
Parameters:
Returns:
Type: double
A value that results from the evaluation of v1.X*v2.X + v1.Y*v2.Y + v1.Z*v2.Z. This value equals v1.Length * v2.Length * cos(alpha), where alpha is the angle between vectors.
Available since:
5.0

Multiply method

Class:  Rhino.Geometry.Vector3d

Nothing found