[]
        
(Showing Draft Content)

C1.Framework.Mathematics.Vector.op_Multiply

operator * Operator

operator *(Vector, Vector)

Defines the * operator for vector.

Declaration
public static Vector operator *(Vector left, Vector right)
Parameters
Type Name Description
Vector left

A Vector indicates the left operand.

Vector right

A Vector indicates the right operand.

Returns
Type Description
Vector

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

Remarks

(n1, n2, n3) * (m1, m2, m3) = (n1 * m1, n2 * m2, n3 * m3)