All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.flowpowered.math.matrix.Matrixd Maven / Gradle / Ivy

Go to download

Immutable math library for Java with a focus on games and computer graphics.

The newest version!
package com.flowpowered.math.matrix;

import com.flowpowered.math.vector.Vectord;

public interface Matrixd {
    public double get(int row, int col);

    public Vectord getRow(int row);

    public Vectord getColumn(int col);

    public Matrixd mul(double a);

    public Matrixd div(double a);

    public Matrixd pow(double pow);

    public Matrixd ceil();

    public Matrixd floor();

    public Matrixd round();

    public Matrixd abs();

    public Matrixd negate();

    public Matrixd transpose();

    public double trace();

    public double determinant();

    public Matrixd invert();

    public double[] toArray(boolean columnMajor);

    public Matrixf toFloat();

    public Matrixd toDouble();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy