Returns the cross product of two 3D vectors.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static DenseVector<T> CrossProduct(
Vector<T> left,
Vector<T> right
)
Public Shared Function CrossProduct (
left As Vector(Of T),
right As Vector(Of T)
) As DenseVector(Of T)
public:
static DenseVector<T>^ CrossProduct(
Vector<T>^ left,
Vector<T>^ right
)
static member CrossProduct :
left : Vector<'T> *
right : Vector<'T> -> DenseVector<'T>
Parameters
- left
- Type: Extreme.MathematicsVectorT
The first VectorT. - right
- Type: Extreme.MathematicsVectorT
The second VectorT.
Return Value
Type:
DenseVectorTThe cross product of the two vectors.
Reference