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