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