[]
Defines the descarts multiplication operation for vector.
public static Vector<T> CrossMultiply(Vector<T> left, Vector<T> right)
Type | Name | Description |
---|---|---|
Vector<T> | left | A Vector indicates the left operand. |
Vector<T> | right | A Vector indicates the right operand. |
Type | Description |
---|---|
Vector<T> | A Vector that is the descarts multiplying result of the left and right operands. |
| i, j, k |
(n1, n2, n3) X (m1, m2, m3) = | n1, n2, n3| = (?, ?, ?) | m1, m2, m3|
Cross multiply a speical vector to this vector.
public virtual void CrossMultiply(Vector<T> value)
Type | Name | Description |
---|---|---|
Vector<T> | value | A Vector indicates the speical vector.. |