Class Matrix2f

java.lang.Object
org.spongepowered.math.matrix.Matrix2f
All Implemented Interfaces:
Serializable, Matrixf

@Immutable public final class Matrix2f extends Object implements Matrixf, Serializable
A 2x2 matrix containing values of type float.`
See Also:
  • Field Details

    • ZERO

      public static final Matrix2f ZERO
    • IDENTITY

      public static final Matrix2f IDENTITY
  • Constructor Details

    • Matrix2f

      public Matrix2f(Matrix3f m)
    • Matrix2f

      public Matrix2f(Matrix4f m)
    • Matrix2f

      public Matrix2f(MatrixNf m)
    • Matrix2f

      public Matrix2f(double m00, double m01, double m10, double m11)
    • Matrix2f

      public Matrix2f(float m00, float m01, float m10, float m11)
  • Method Details