Vector::CrossProduct Method (Vector, Vector)
.NET Framework (current version)
Calculates the cross product of two vectors.
Assembly: WindowsBase (in WindowsBase.dll)
Parameters
- vector1
-
Type:
System.Windows::Vector
The first vector to evaluate.
- vector2
-
Type:
System.Windows::Vector
The second vector to evaluate.
Return Value
Type: System::DoubleThe cross product of vector1 and vector2. The following formula is used to calculate the cross product:
(Vector1.X * Vector2.Y) - (Vector1.Y * Vector2.X)
The following example shows how to use this method to calculate the cross product of two Vector structures.
private Double crossProductExample() { Vector vector1 = new Vector(20, 30); Vector vector2 = new Vector(45, 70); Double crossProduct; // crossProduct is equal to 50 crossProduct = Vector.CrossProduct(vector1, vector2); return crossProduct; }
.NET Framework
Available since 3.0
Available since 3.0
Show: