public interface Affine3D<T extends Affine3D<T>> extends InvertibleCoordinateTransform
Modifier and Type | Method and Description |
---|---|
void |
concatenate(T affine3d) |
T |
createInverse() |
void |
preConcatenate(T affine3d) |
void |
toArray(double[] data)
Write the 12 parameters of the affine into a double array.
|
void |
toMatrix(double[][] data)
Write the 12 parameters of the affine into a 4x3 double array.
|
apply, applyInPlace
applyInverse, applyInverseInPlace
void preConcatenate(T affine3d)
void concatenate(T affine3d)
void toArray(double[] data)
void toMatrix(double[][] data)
[0][0] -> m00; [0][1] -> m01; [0][2] -> m02; [0][3] -> m03
[1][0] -> m10; [1][1] -> m11; [1][2] -> m12; [1][3] -> m13
[2][0] -> m20; [2][1] -> m21; [2][2] -> m22; [2][3] -> m23
T createInverse()
createInverse
in interface InvertibleCoordinateTransform
Copyright © 2015–2021 Fiji. All rights reserved.