public interface ThreeDimensionalIntAccess extends ThreeDimensionalIntReadAccess, ThreeDimensionalAccess<java.lang.Integer>
Modifier and Type | Field and Description |
---|---|
static ThreeDimensionalIntAccess |
EMPTY
Empty 3dimensional int access.
|
Modifier and Type | Method and Description |
---|---|
default void |
changeAllValues(IntOperator1 operator)
Change all values by applying an operator.
|
default void |
changeValueAt(IntOperator1 operator,
int ix,
int iy,
int iz)
Change the value at the given indexes.
|
default void |
fillValuesByIndex(IntToIntFunction3 setter)
Set all values depending on their indexes.
|
default void |
setElementAt(java.lang.Integer element,
int ix,
int iy,
int iz)
Set the element at the given indexes.
|
void |
setValueAt(int value,
int ix,
int iy,
int iz)
Set the value at the given indexes.
|
default TwoDimensionalIntAccess |
subAtX(int fixX)
Get a 2-dimensional view of the plane at the given X index.
|
default TwoDimensionalIntAccess |
subAtY(int fixY)
Get a 2-dimensional view of the plane at the given Y index.
|
default TwoDimensionalIntAccess |
subAtZ(int fixZ)
Get a 2-dimensional view of the plane at the given Z index.
|
getElementAt, getValueAt, singleton
changeAll, changeAll, empty, fillByIndex, setElement
getElement, getNumDimensions, getNumElements, getSize, getSizes, sizeX, sizeY, sizeZ, view, visitAll, visitAll
change, setAll, setFrom, setFrom, setFrom
empty, linearized
static final ThreeDimensionalIntAccess EMPTY
void setValueAt(int value, int ix, int iy, int iz)
value
- value to setix
- X indexiy
- Y indexiz
- Z indexdefault void changeValueAt(@NotNull IntOperator1 operator, int ix, int iy, int iz)
operator
- operator to apply to the valueix
- X indexiy
- Y indexiz
- Z indexdefault void changeAllValues(@NotNull IntOperator1 operator)
operator
- operator to applydefault void fillValuesByIndex(@NotNull IntToIntFunction3 setter)
setter
- setter which provides the value to set for each index combinationdefault void setElementAt(@NotNull java.lang.Integer element, int ix, int iy, int iz)
ThreeDimensionalAccess
setElementAt
in interface ThreeDimensionalAccess<java.lang.Integer>
element
- element to setix
- index in X direction from 0
(included) to ThreeDimensionalReadAccess.sizeX()
(excluded)iy
- index in Y direction from 0
(included) to ThreeDimensionalReadAccess.sizeY()
(excluded)iz
- index in Y direction from 0
(included) to ThreeDimensionalReadAccess.sizeZ()
(excluded)@NotNull default TwoDimensionalIntAccess subAtX(int fixX)
ThreeDimensionalReadAccess
subAtX
in interface ThreeDimensionalAccess<java.lang.Integer>
subAtX
in interface ThreeDimensionalIntReadAccess
subAtX
in interface ThreeDimensionalReadAccess<java.lang.Integer>
fixX
- fix X indexfixX
@NotNull default TwoDimensionalIntAccess subAtY(int fixY)
ThreeDimensionalReadAccess
subAtY
in interface ThreeDimensionalAccess<java.lang.Integer>
subAtY
in interface ThreeDimensionalIntReadAccess
subAtY
in interface ThreeDimensionalReadAccess<java.lang.Integer>
fixY
- fix Y indexfixY
@NotNull default TwoDimensionalIntAccess subAtZ(int fixZ)
ThreeDimensionalReadAccess
subAtZ
in interface ThreeDimensionalAccess<java.lang.Integer>
subAtZ
in interface ThreeDimensionalIntReadAccess
subAtZ
in interface ThreeDimensionalReadAccess<java.lang.Integer>
fixZ
- fix Z indexfixZ