public interface Affine2D<T extends Affine2D<T>> extends InvertibleCoordinateTransform
Modifier and Type | Method and Description |
---|---|
void |
concatenate(T affine2d) |
AffineTransform |
createAffine()
Create an
AffineTransform representing the current parameters
the model. |
T |
createInverse() |
AffineTransform |
createInverseAffine()
Create an
AffineTransform representing the inverse of the
current parameters of the model. |
void |
preConcatenate(T affine2d) |
void |
toArray(double[] data)
Write the 6 parameters of the affine into a double array.
|
void |
toMatrix(double[][] data)
Write the 6 parameters of the affine into a 3x2 double array.
|
apply, applyInPlace
applyInverse, applyInverseInPlace
AffineTransform createAffine()
AffineTransform
representing the current parameters
the model.AffineTransform
AffineTransform createInverseAffine()
AffineTransform
representing the inverse of the
current parameters of the model.AffineTransform
void preConcatenate(T affine2d)
void concatenate(T affine2d)
void toArray(double[] data)
void toMatrix(double[][] data)
[0][0] -> m00; [0][1] -> m01; [0][2] -> m02;
[1][0] -> m10; [1][1] -> m11; [1][2] -> m12;
T createInverse()
createInverse
in interface InvertibleCoordinateTransform
Copyright © 2015–2021 Fiji. All rights reserved.