Description:

Multiplies two vectors together, returning the dot product (or inner product). This differs from the cross product.

Syntax:
public static public static double operator *(
Vector3d vector1,
Vector3d vector2
)
Parameters:
Returns:
Type: public
Available since:
5.0

Description:

Multiplies a vector by a number, having the effect of scaling it.

Syntax:
public static public static Vector3d operator *(
double t,
Vector3d vector
)
Parameters:
Returns:
Type: public
Available since:
5.0

Description:

Multiplies a vector by a number, having the effect of scaling it.

Syntax:
public static public static Vector3d operator *(
Vector3d vector,
double t
)
Parameters:
Returns:
Type: public
Available since:
5.0

Nothing found