|  | VectorF Operators and Type Conversions | 
The VectorF type exposes the following members.
 Operators
Operators| Name | Description | |
|---|---|---|
|   | Addition | 
            Adds two vectors.
             | 
|   | Division(VectorF, VectorF) | 
            Divides the elements of a vector by the elements of another 
            vector.
             | 
|   | Division(VectorF, Single) | 
            Divides a vector by a scalar.
             | 
|   | Equality | 
            Tests if two vectors are equal.
             | 
|   | (VectorF to Single) | 
            Converts a vector to an array of float values.
             | 
|   | (VectorF to ListSingle) | 
            Converts a vector to a list of float values.
             | 
|   | (VectorF to Vector2F) | |
|   | (VectorF to Vector3F) | |
|   | (VectorF to Vector4F) | |
|   | (VectorF to MatrixF) | |
|   | GreaterThan | 
            Tests if each element of a vector is greater than the corresponding element of another
            vector.
             | 
|   | GreaterThanOrEqual | 
            Tests if each element of a vector is greater or equal than the corresponding element of
            another vector.
             | 
|   | (VectorF to VectorD) | |
|   | Inequality | 
            Tests if two vectors are not equal.
             | 
|   | LessThan | 
            Tests if each element of a vector is less than the corresponding element of another vector.
             | 
|   | LessThanOrEqual | 
            Tests if each element of a vector is less or equal than the corresponding element of another
            vector.
             | 
|   | Multiply(Single, VectorF) | 
            Multiplies a vector by a scalar.
             | 
|   | Multiply(VectorF, VectorF) | 
            Multiplies the components of two vectors by each other.
             | 
|   | Multiply(VectorF, Single) | 
            Multiplies a vector by a scalar.
             | 
|   | Subtraction | 
            Subtracts a vector from a vector.
             | 
|   | UnaryNegation | 
            Negates a vector.
             | 
 See Also
See Also