Click or drag to resize

Vector3 Operators

The Vector3 type exposes the following members.

Operators
 NameDescription
Public operatorStatic memberAddition(Vector3, Vector3) Adds two vectors.
Public operatorStatic memberDivision(Vector3, Vector3) Divides the components of a Vector3 by the components of another Vector3.
Public operatorStatic memberDivision(Vector3, Double) Divides the components of a Vector3 by a scalar.
Public operatorStatic memberEquality(Vector3, Vector3) Compares whether two Vector3 instances are equal.
Public operatorStatic memberInequality(Vector3, Vector3) Compares whether two Vector3 instances are not equal.
Public operatorStatic memberModulus(Vector3, Vector3) The modulo operator, element by element (componentwise), of two vectors.
Public operatorStatic memberModulus(Vector3, Double) The modulo operator, element by element (componentwise) of the vector x_a on the left, but always with the number x_b on the right.
Public operatorStatic memberMultiply(Double, Vector3) Multiplies the components of vector by a scalar.
Public operatorStatic memberMultiply(Vector3, Vector3) Multiplies the components of two vectors by each other.
Public operatorStatic memberMultiply(Vector3, Double) Multiplies the components of vector by a scalar.
Public operatorStatic memberSubtraction(Vector3, Vector3) Subtracts a Vector3 from a Vector3.
Public operatorStatic memberUnaryNegation(Vector3) Inverts values in the specified Vector3.
Top
See Also