Class Matrix3d

java.lang.Object
org.spongepowered.math.matrix.Matrix3d
All Implemented Interfaces:
Serializable, Matrixd

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

    • ZERO

      public static final Matrix3d ZERO
    • IDENTITY

      public static final Matrix3d IDENTITY
  • Constructor Details

    • Matrix3d

      public Matrix3d(Matrix2d m)
    • Matrix3d

      public Matrix3d(Matrix4d m)
    • Matrix3d

      public Matrix3d(MatrixNd m)
    • Matrix3d

      public Matrix3d(float m00, float m01, float m02, float m10, float m11, float m12, float m20, float m21, float m22)
    • Matrix3d

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