public interface AffineSet
Modifier and Type | Method and Description |
---|---|
void |
set(double... values)
Set the n×(n+1) affine transformation matrix with
row packed double values.
|
void |
set(double[][] values)
Set the n×(n+1) affine transformation matrix with
double values from a [row][column] addressed array.
|
void |
set(double value,
int row,
int column)
Set a field of the n×(n+1) affine transformation
matrix.
|
void set(double value, int row, int column)
value
- the valuerow
- the row indexcolumn
- the column indexvoid set(double... values)
values
- the lines of valuesvoid set(double[][] values)
values
- a 2d array of valuesCopyright © 2015–2022 ImgLib2. All rights reserved.