Uses of Class
Matrix2D

Uses of Matrix2D in <Unnamed>
 

Methods in <Unnamed> that return Matrix2D
 Matrix2D Matrix2D.add(Matrix2D other)
          Constructs and returns a new Matrix2D object consisting of the sum of the elements in the same corresponding position
 Matrix2D Transform2D.getTransform2D()
          Accessor method that return the elements of matrix transform
 Matrix2D Matrix2D.mul(double[][] other)
          Constructs and returns a new Matrix2D object consisting of the matrix product
 Matrix2D Matrix2D.mul(Matrix2D other)
          Constructs and returns a new Matrix2D object consisting of the matrix product
 Matrix2D Matrix2D.sub(Matrix2D other)
          Constructs and returns a new Matrix2D object consisting of the difference of the elements in the same corresponding position
 

Methods in <Unnamed> with parameters of type Matrix2D
 Matrix2D Matrix2D.add(Matrix2D other)
          Constructs and returns a new Matrix2D object consisting of the sum of the elements in the same corresponding position
 Matrix2D Matrix2D.mul(Matrix2D other)
          Constructs and returns a new Matrix2D object consisting of the matrix product
 void Transform2D.setTransform2D(Matrix2D matrix2D)
          Modifier method that sets the elements of matrix transform to the elements of the matrix parameter.
 Matrix2D Matrix2D.sub(Matrix2D other)
          Constructs and returns a new Matrix2D object consisting of the difference of the elements in the same corresponding position
 

Constructors in <Unnamed> with parameters of type Matrix2D
Matrix2D(Matrix2D other)
          Constructs a Matrix2D object using the elements of the Matrix2D parameter
Transform2D(Matrix2D matrix2D)
          Constructs a Transform2D object by duplicating the elements of the Matrix2D parameter