Renamed indexes to matrix
This commit is contained in:
parent
184da4cf87
commit
6541a02041
21 changed files with 151 additions and 107 deletions
|
|
@ -13,15 +13,15 @@ public class GroßGetậlŌṁDiamond6ˢᴰ extends AbstractGroßGetậlŌṁ6ˢ
|
|||
// 3th = 1+3+6+14 * V144Tocta (24)
|
||||
// etc
|
||||
|
||||
public GroßGetậlŌṁDiamond6ˢᴰ(byte level) {
|
||||
public GroßGetậlŌṁDiamond6ˢᴰ(int level) {
|
||||
super(level);
|
||||
}
|
||||
|
||||
public GroßGetậlŌṁDiamond6ˢᴰ(byte level, BaseIteratorOctal values) {
|
||||
public GroßGetậlŌṁDiamond6ˢᴰ(int level, BaseIteratorOctal values) {
|
||||
super(level, values);
|
||||
}
|
||||
|
||||
protected int resolveFractalLevel(byte level) {
|
||||
protected int resolveFractalLevel(int level) {
|
||||
// TODO
|
||||
return level;
|
||||
}
|
||||
|
|
@ -29,12 +29,12 @@ public class GroßGetậlŌṁDiamond6ˢᴰ extends AbstractGroßGetậlŌṁ6ˢ
|
|||
@Override
|
||||
public GroßGetậlŌṁDiamond6ˢᴰ 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 z=0;z<getValueIndex1Length();z++) {
|
||||
setValueIndex1(z);
|
||||
for (int x=0;x<getMatrix0Length();x++) {
|
||||
setMatrix0(x);
|
||||
for (int y=0;y<getMatrix1Length();y++) {
|
||||
setMatrix1(y);
|
||||
for (int z=0;z<getMatrix1Length();z++) {
|
||||
setMatrix1(z);
|
||||
cloneStack.addIterator(getValue().iteratorOctalsByClone());
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue