Matrix4F Operators and Type Conversions |
The Matrix4F type exposes the following members.
Operators| | Name | Description |
|---|
  | Addition(Matrix4F, Matrix4F) |
Adds two matricies.
|
  | Equality(Matrix4F, Matrix4F) |
Determines whether two given matricies are equal.
|
  | (Matrix4F to Matrix4) |
Implicit conversion from Matrix4F type to Matrix4 type for given value.
|
  | Inequality(Matrix4F, Matrix4F) |
Determines whether two given matricies are unequal.
|
  | Multiply(Matrix4F, Matrix4F) |
Multiplies two matrices.
|
  | Multiply(Matrix4F, RayF) |
Translates the ray coordinates to the space defined by a matrix.
|
  | Multiply(Matrix4F, Vector3F) |
Multiplies a matrix by a given Vector3F structure.
|
  | Multiply(Matrix4F, Vector4F) |
Multiplies a matrix by a given Vector4F structure.
|
  | Multiply(Matrix4F, Single) |
Multiplies a matrix by a given value.
|
  | Multiply(RayF, Matrix4F) |
Translates the ray coordinates to the space defined by a matrix.
|
  | Multiply(Single, Matrix4F) |
Multiplies a matrix by a given value.
|
  | Multiply(Vector3F, Matrix4F) |
Multiplies a matrix by a given Vector3F structure.
|
  | Multiply(Vector4F, Matrix4F) |
Multiplies a matrix by a given Vector4F structure.
|
  | Subtraction(Matrix4F, Matrix4F) |
Subtracts two matricies.
|
  | UnaryNegation(Matrix4F) |
Negates a matrix.
|
Top
See Also