Class Matrix3f

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

@Immutable public final class Matrix3f extends Object implements Matrixf, Serializable
See Also:
  • Field Details

    • ZERO

      public static final Matrix3f ZERO
    • IDENTITY

      public static final Matrix3f IDENTITY
  • Constructor Details

    • Matrix3f

      public Matrix3f(Matrix2f m)
    • Matrix3f

      public Matrix3f(Matrix4f m)
    • Matrix3f

      public Matrix3f(MatrixNf m)
    • Matrix3f

      public Matrix3f(double m00, double m01, double m02, double m10, double m11, double m12, double m20, double m21, double m22)
    • Matrix3f

      public Matrix3f(float m00, float m01, float m02, float m10, float m11, float m12, float m20, float m21, float m22)
  • Method Details