The VectorT type exposes the following members.
Operators | Name | Description |
---|
  | Addition(T, VectorT) |
Adds a scalar to each element of a vector.
|
  | Addition(VectorT, T) |
Adds a scalar to each element of a vector.
|
  | Addition(VectorT, VectorT) |
Adds two Vectors together and returns the results.
|
  | Division(T, VectorT) |
Divides a scalar with a vector.
|
  | Division(VectorT, T) |
Divides a vector with a scalar.
|
  | Division(VectorT, VectorT) |
Pointwise divides two Vectors.
|
  | DotDivide(VectorT, VectorT) | |
  | DotHat(VectorT, T) | |
  | DotHat(VectorT, VectorT) | |
  | DotMultiply(VectorT, VectorT) | |
  | DotPercent(VectorT, VectorT) | |
  | Modulus(T, VectorT) |
Computes the remainder (% operator), where the result has the sign of the dividend,
of the given dividend of each element of the vector.
|
  | Modulus(VectorT, T) |
Computes the remainder (% operator), where the result has the sign of the dividend,
of each element of the vector of the given divisor.
|
  | Modulus(VectorT, VectorT) |
Computes the pointwise remainder (% operator), where the result has the sign of the dividend,
of each element of two vectors.
|
  | Multiply(T, VectorT) |
Multiplies a vector with a scalar.
|
  | Multiply(VectorT, T) |
Multiplies a vector with a scalar.
|
  | Multiply(VectorT, VectorT) |
Computes the dot product between two Vectors.
|
  | Subtraction(T, VectorT) |
Subtracts each element of a vector from a scalar.
|
  | Subtraction(VectorT, T) |
Subtracts a scalar from each element of a vector.
|
  | Subtraction(VectorT, VectorT) |
Subtracts two Vectors and returns the results.
|
  | UnaryNegation(VectorT) |
Returns a Vector containing the negated values of rightSide.
|
  | UnaryPlus(VectorT) |
Returns a Vector containing the same values of rightSide.
|
Top
See Also