The Vector3 type exposes the following members.
Operators|   | Name | Description | 
|---|
   | Addition(Vector3, Vector3) | 
            Adds two vectors.
             | 
   | Division(Vector3, Vector3) | 
            Divides the components of a Vector3 by the components of another Vector3.
             | 
   | Division(Vector3, Double) | 
            Divides the components of a Vector3 by a scalar.
             | 
   | Equality(Vector3, Vector3) | 
            Compares whether two Vector3 instances are equal.
             | 
   | Inequality(Vector3, Vector3) | 
            Compares whether two Vector3 instances are not equal.
             | 
   | Modulus(Vector3, Vector3) | 
              The modulo operator, element by element (componentwise), of two vectors.
             | 
   | Modulus(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.
             | 
   | Multiply(Double, Vector3) | 
            Multiplies the components of vector by a scalar.
             | 
   | Multiply(Vector3, Vector3) | 
            Multiplies the components of two vectors by each other.
             | 
   | Multiply(Vector3, Double) | 
            Multiplies the components of vector by a scalar.
             | 
   | Subtraction(Vector3, Vector3) | 
            Subtracts a Vector3 from a Vector3.
             | 
   | UnaryNegation(Vector3) | 
            Inverts values in the specified Vector3.
             | 
Top
See Also