public interface ThreeDimensionalFloatAccess extends ThreeDimensionalFloatReadAccess, ThreeDimensionalAccess<java.lang.Float>
Modifier and Type | Field and Description |
---|---|
static ThreeDimensionalFloatAccess |
EMPTY
Empty 3dimensional float access.
|
Modifier and Type | Method and Description |
---|---|
default void |
changeAllValues(FloatOperator1 operator)
Change all values by applying an operator.
|
default void |
changeValueAt(FloatOperator1 operator,
int ix,
int iy,
int iz)
Change the value at the given indexes.
|
default void |
fillValuesByIndex(IntToFloatFunction3 setter)
Set all values depending on their indexes.
|
default void |
setElementAt(java.lang.Float element,
int ix,
int iy,
int iz)
Set the element at the given indexes.
|
void |
setValueAt(float value,
int ix,
int iy,
int iz)
Set the value at the given indexes.
|
default TwoDimensionalFloatAccess |
subAtX(int fixX)
Get a 2-dimensional view of the plane at the given X index.
|
default TwoDimensionalFloatAccess |
subAtY(int fixY)
Get a 2-dimensional view of the plane at the given Y index.
|
default TwoDimensionalFloatAccess |
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 ThreeDimensionalFloatAccess EMPTY
void setValueAt(float value, int ix, int iy, int iz)
value
- value to setix
- X indexiy
- Y indexiz
- Z indexdefault void changeValueAt(@NotNull FloatOperator1 operator, int ix, int iy, int iz)
operator
- operator to apply to the valueix
- X indexiy
- Y indexiz
- Z indexdefault void changeAllValues(@NotNull FloatOperator1 operator)
operator
- operator to applydefault void fillValuesByIndex(@NotNull IntToFloatFunction3 setter)
setter
- setter which provides the value to set for each index combinationdefault void setElementAt(@NotNull java.lang.Float element, int ix, int iy, int iz)
ThreeDimensionalAccess
setElementAt
in interface ThreeDimensionalAccess<java.lang.Float>
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 TwoDimensionalFloatAccess subAtX(int fixX)
ThreeDimensionalReadAccess
subAtX
in interface ThreeDimensionalAccess<java.lang.Float>
subAtX
in interface ThreeDimensionalFloatReadAccess
subAtX
in interface ThreeDimensionalReadAccess<java.lang.Float>
fixX
- fix X indexfixX
@NotNull default TwoDimensionalFloatAccess subAtY(int fixY)
ThreeDimensionalReadAccess
subAtY
in interface ThreeDimensionalAccess<java.lang.Float>
subAtY
in interface ThreeDimensionalFloatReadAccess
subAtY
in interface ThreeDimensionalReadAccess<java.lang.Float>
fixY
- fix Y indexfixY
@NotNull default TwoDimensionalFloatAccess subAtZ(int fixZ)
ThreeDimensionalReadAccess
subAtZ
in interface ThreeDimensionalAccess<java.lang.Float>
subAtZ
in interface ThreeDimensionalFloatReadAccess
subAtZ
in interface ThreeDimensionalReadAccess<java.lang.Float>
fixZ
- fix Z indexfixZ