Interface LinearTransform

    • Method Detail

      • getMatrix

        Matrix getMatrix()
        Returns this transform as an affine transform matrix.
        Returns:
        A copy of the underlying matrix.
      • isIdentity

        boolean isIdentity​(double tolerance)
        Tests whether this transform does not move any points, by using the provided tolerance value. The signification of tolerance value is the same than in the following pseudo-code:
         getMatrix().isIdentity(tolerance);
         
        Parameters:
        tolerance - The tolerance factor.
        Returns:
        true if this transform is the identity one
        Since:
        2.4