public interface LinearTransform extends MathTransform
MathTransforms. A linear transform can be express as an affine
transform using a matrix. The number of
columns is equals to the number of source dimensions plus 1,
and the number of rows is equals to the number of target dimensions plus 1.| Modifier and Type | Method and Description |
|---|---|
Matrix |
getMatrix()
Returns this transform as an affine transform matrix.
|
boolean |
isIdentity(double tolerance)
Tests whether this transform does not move any points, by using the provided
tolerance value. |
derivative, getSourceDimensions, getTargetDimensions, inverse, isIdentity, toWKT, transform, transform, transform, transform, transformMatrix getMatrix()
boolean isIdentity(double tolerance)
tolerance value. The signification of tolerance value is the same than in the
following pseudo-code:
getMatrix().isIdentity(tolerance);
tolerance - The tolerance factor.true if this transform is the identity oneCopyright © 1996–2019 Geotools. All rights reserved.