gdxapp4d/demo4d-numberxd/src/main/love/distributedrebirth/numberxd/GroßGetậlŌṁHyperStàr1ⁿᴰ.java

40 lines
1.2 KiB
Java
Raw Normal View History

2022-01-31 19:13:12 +01:00
package love.distributedrebirth.numberxd;
2022-02-04 18:00:03 +01:00
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
import love.distributedrebirth.numberxd.base2t.BaseIteratorOctal;
import love.distributedrebirth.numberxd.base2t.BaseIteratorOctalStack;
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
public class GroßGetậlŌṁHyperStàr1ⁿᴰ extends AbstractGroßGetậlŌṁ1ⁿᴰ<GroßGetậlŌṁHyperStàr1ⁿᴰ> {
2022-01-31 19:13:12 +01:00
// 0th = V144Tocta
// 1th = 5 * V144Tocta
// 2th = 5 * 12 * V144Tocta
// etc
2022-02-04 20:01:05 +01:00
public GroßGetậlŌṁHyperStàr1ⁿᴰ(int level) {
2022-01-31 19:13:12 +01:00
super(level);
}
2022-02-04 20:01:05 +01:00
public GroßGetậlŌṁHyperStàr1ⁿᴰ(int level, BaseIteratorOctal values) {
2022-02-04 18:00:03 +01:00
super(level, values);
}
2022-02-04 20:01:05 +01:00
protected int resolveFractalLevel(int level) {
2022-01-31 19:13:12 +01:00
// TODO
return level;
}
2022-02-04 18:00:03 +01:00
2022-01-31 19:13:12 +01:00
@Override
2022-02-04 18:00:03 +01:00
public GroßGetậlŌṁHyperStàr1ⁿᴰ toClone() {
BaseIteratorOctalStack cloneStack = new BaseIteratorOctalStack();
2022-02-04 20:01:05 +01:00
for (int x=0;x<getMatrix0Length();x++) {
setMatrix0(x);
for (int y=0;y<getMatrix1Length();y++) {
setMatrix1(y);
2022-02-04 18:00:03 +01:00
cloneStack.addIterator(getValue().iteratorOctalsByClone());
}
}
return new GroßGetậlŌṁHyperStàr1ⁿᴰ(getFractalLevel(), cloneStack);
2022-01-31 19:13:12 +01:00
}
}