public class ThreeDimensionalBooleanArray extends java.lang.Object implements ThreeDimensionalBooleanAccess
EMPTY
Constructor and Description |
---|
ThreeDimensionalBooleanArray(int ySize,
int zSize,
boolean... values)
Constructor.
|
ThreeDimensionalBooleanArray(int xSize,
int ySize,
int zSize)
Constructor.
|
ThreeDimensionalBooleanArray(int xSize,
int ySize,
int zSize,
IntPredicate3 filler)
Initializing constructor.
|
Modifier and Type | Method and Description |
---|---|
boolean |
getValueAt(int ix,
int iy,
int iz)
Get the value at the given indexes.
|
void |
setValueAt(boolean value,
int ix,
int iy,
int iz)
Set the value at the given indexes.
|
int |
sizeX()
Get the number of elements in X direction.
|
int |
sizeY()
Get the number of elements in Y direction
|
int |
sizeZ()
Get the number of elements in Z direction
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
changeAllValues, changeValueAt, fillValuesByIndex, setElementAt, subAtX, subAtY, subAtZ
getElementAt, singleton
changeAll, changeAll, empty, fillByIndex, setElement
getElement, getNumDimensions, getNumElements, getSize, getSizes, view, visitAll, visitAll
change, setAll, setFrom, setFrom, setFrom
empty, linearized
public ThreeDimensionalBooleanArray(int xSize, int ySize, int zSize)
false
.xSize
- X size of arrayySize
- Y size of arrayzSize
- Z size of arrayThreeDimensionalBooleanArray(int, int, int, IntPredicate3)
public ThreeDimensionalBooleanArray(int xSize, int ySize, int zSize, @NotNull IntPredicate3 filler)
xSize
- X size of arrayySize
- Y size of arrayzSize
- Z size of arrayfiller
- setter function which provides the value to set for each index combinationThreeDimensionalBooleanAccess.fillValuesByIndex(IntPredicate3)
public ThreeDimensionalBooleanArray(int ySize, int zSize, boolean... values)
ySize
- size in y directionzSize
- size in z directionvalues
- values in order, the first zSize
values
will become row 0 of plane 0, the second zSize
values
row 1, and so on until the first plane of ySize
rows is filled.
Then the next plane is filled.
Needs a multiple of ySize*zSize
values, and the multiplicator
defines the X size.public void setValueAt(boolean value, int ix, int iy, int iz)
ThreeDimensionalBooleanAccess
setValueAt
in interface ThreeDimensionalBooleanAccess
value
- value to setix
- X indexiy
- Y indexiz
- Z indexpublic boolean getValueAt(int ix, int iy, int iz)
ThreeDimensionalBooleanReadAccess
getValueAt
in interface ThreeDimensionalBooleanReadAccess
ix
- X indexiy
- Y indexiz
- Z indexpublic int sizeX()
ThreeDimensionalReadAccess
sizeX
in interface ThreeDimensionalReadAccess<java.lang.Boolean>
public int sizeY()
ThreeDimensionalReadAccess
sizeY
in interface ThreeDimensionalReadAccess<java.lang.Boolean>
public int sizeZ()
ThreeDimensionalReadAccess
sizeZ
in interface ThreeDimensionalReadAccess<java.lang.Boolean>