[]
        
(Showing Draft Content)

C1.Framework.Mathematics.Vector-1.CrossMultiply

CrossMultiply Method

CrossMultiply(Vector<T>, Vector<T>)

Defines the descarts multiplication operation for vector.

Declaration
public static Vector<T> CrossMultiply(Vector<T> left, Vector<T> right)
Parameters
Type Name Description
Vector<T> left

A Vector indicates the left operand.

Vector<T> right

A Vector indicates the right operand.

Returns
Type Description
Vector<T>

A Vector that is the descarts multiplying result of the left and right operands.

Remarks
                          | i,  j,  k |

(n1, n2, n3) X (m1, m2, m3) = | n1, n2, n3| = (?, ?, ?) | m1, m2, m3|

CrossMultiply(Vector<T>)

Cross multiply a speical vector to this vector.

Declaration
public virtual void CrossMultiply(Vector<T> value)
Parameters
Type Name Description
Vector<T> value

A Vector indicates the speical vector..