Renamed indexes to matrix

This commit is contained in:
Willem 2022-02-04 20:01:05 +01:00
parent 184da4cf87
commit 6541a02041
21 changed files with 151 additions and 107 deletions

View file

@ -47,26 +47,26 @@ public class KlompÅtŌṁKāassGetậl4ˢᴰ extends AbstractBaseGetậlLevel1<
@Override
public V0x000CA8ˣᴸ getValue() {
return kaas[valueIndex0][valueIndex1];
return kaas[matrix0][matrix1];
}
@Override
public int getValueIndex0Length() {
public int getMatrix0Length() {
return T08PartOctal.LENGTH();
}
@Override
public int getValueIndex1Length() {
public int getMatrix1Length() {
return kaasCuts;
}
@Override
public KlompÅtŌṁKāassGetậl4ˢᴰ toClone() {
BaseIteratorOctalStack cloneStack = new BaseIteratorOctalStack();
for (int x=0;x<getValueIndex0Length();x++) {
setValueIndex0(x);
for (int y=0;y<getValueIndex1Length();y++) {
setValueIndex1(y);
for (int x=0;x<getMatrix0Length();x++) {
setMatrix0(x);
for (int y=0;y<getMatrix1Length();y++) {
setMatrix1(y);
cloneStack.addIterator(getValue().iteratorOctalsByClone());
}
}