Uses of Interface
com.solibri.geometry.linearalgebra.MMatrix4d

Packages that use MMatrix4d
Package Description
com.solibri.geometry.linearalgebra  
  • Uses of MMatrix4d in com.solibri.geometry.linearalgebra

    Methods in com.solibri.geometry.linearalgebra that return MMatrix4d
    Modifier and Type Method Description
    MMatrix4d Matrix4d.add​(double scalar)
    Returns a copy of this matrix after adding a scalar to each component of this matrix.
    MMatrix4d Matrix4d.add​(Matrix4d matrix)
    Returns a copy of this matrix after calculating the sum of this matrix and the given matrix.
    static MMatrix4d MMatrix4d.create()
    Returns a new identity matrix.
    static MMatrix4d MMatrix4d.create​(double[] elements)
    Constructs a matrix with the given array of 16 elements or 12 elements.
    static MMatrix4d MMatrix4d.create​(double m00, double m01, double m02, double m03, double m10, double m11, double m12, double m13, double m20, double m21, double m22, double m23, double m30, double m31, double m32, double m33)
    Constructs a matrix with the given 16 elements.
    static MMatrix4d MMatrix4d.create​(Matrix4d matrix)
    Returns a new matrix with the values of the given matrix.
    MMatrix4d Matrix4d.multiply​(Matrix4d matrix)
    Returns a copy of this matrix after calculating the product of this matrix and the given matrix.
    static MMatrix4d Matrix4d.productOf​(Matrix4d matrix1, Matrix4d matrix2)
    Returns the product of the two inputed matrixes.
    MMatrix4d Matrix4d.subtract​(Matrix4d matrix)
    Returns a copy of this matrix after calculating the difference between this matrix and the given matrix.