Summary
public static double Dot(Vector3D vector1, Vector3D vector2)
Calculates the dot product of two vectors. If the two vectors are unit vectors, the dot product returns a doubleing point value between -1 and 1 that can be used to determine some properties of the angle between two vectors. For example, it can show whether the vectors are orthogonal, parallel, or have an acute or obtuse angle between them.
Returns
Parameters
Summary
public static double Dot(Vector3D vector1, Vector3 vector2)
Returns
Parameters
Summary
public static void Dot(ref Vector3D vector1, ref Vector3D vector2, out double result)
Calculates the dot product of two vectors and writes the result to a user-specified variable. If the two vectors are unit vectors, the dot product returns a doubleing point value between -1 and 1 that can be used to determine some properties of the angle between two vectors. For example, it can show whether the vectors are orthogonal, parallel, or have an acute or obtuse angle between them.
Parameters
Summary
public static void Dot(ref Vector3D vector1, ref Vector3 vector2, out double result)
Parameters
Summary
public static void Dot(ref Vector3 vector1, ref Vector3D vector2, out double result)
Parameters
Summary
public double Dot(Vector3D v)
Returns
Parameters
- Vector3D v
Summary
public double Dot(Vector3 v)
Returns
Parameters
- Vector3 v
Summary
public double Dot(ref Vector3D v)
Returns
Parameters
- Vector3D v