Vector2F Operators and Type Conversions |
The Vector2F type exposes the following members.
Operators| | Name | Description |
|---|
  | Addition(Vector2F, Vector2F) |
Adds two vectors.
|
  | Division(Single, Vector2F) |
Divides a scalar by a vector.
|
  | Division(Vector2F, Vector2F) |
Divides the first vector by the second vector.
|
  | Division(Vector2F, Single) |
Divides a vector by a given scalar.
|
  | Equality(Vector2F, Vector2F) |
Determines whether two given vectors are equal.
|
  | (Vector2F to Vector2) |
Implicit conversion from Vector2F type to Vector2 type for given value.
|
  | Inequality(Vector2F, Vector2F) |
Determines whether two given vectors are unequal.
|
  | Multiply(Single, Vector2F) |
Multiplies a vector by a given scalar.
|
  | Multiply(Vector2F, Vector2F) |
Multiplies two vectors together.
|
  | Multiply(Vector2F, Single) |
Multiplies a vector by a given scalar.
|
  | Subtraction(Vector2F, Vector2F) |
Subtracts two vectors.
|
  | UnaryNegation(Vector2F) |
Reverses the direction of a given vector.
|
Top
See Also