Vector2.op_Multiply

operator *

Multiply operator for Vector2

public static Vector2 operator *(Vector2 lhs, double rhs)
ParameterTypeDescription
lhsVector2Left hand side value.
rhsDoubleRight hand side value.

Return Value

The result of multiply.

See Also


operator *

Multiply operator for Vector2

public static Vector2 operator *(double lhs, Vector2 rhs)
ParameterTypeDescription
lhsDoubleLeft hand side value.
rhsVector2Right hand side value.

Return Value

The result of multiply.

See Also