Missed capital G for Glyph.
This commit is contained in:
parent
1578c214d2
commit
1cfa01e989
|
@ -5,13 +5,13 @@ import love.distributedrebirth.demo4d.base2t.T08PartOctalBaseAppender;
|
||||||
import love.distributedrebirth.demo4d.base2t.T08PartOctalBaseIterator;
|
import love.distributedrebirth.demo4d.base2t.T08PartOctalBaseIterator;
|
||||||
import love.distributedrebirth.demo4d.base2t.V144Tocta;
|
import love.distributedrebirth.demo4d.base2t.V144Tocta;
|
||||||
|
|
||||||
abstract public class GroßGetậlŌṁglyph<V extends GroßGetậlŌṁglyph<V> & BaseNumber<V>> implements BaseNumber<V> {
|
abstract public class GroßGetậlŌṁGlyph<V extends GroßGetậlŌṁGlyph<V> & BaseNumber<V>> implements BaseNumber<V> {
|
||||||
|
|
||||||
private GroßGetậl[] values;
|
private GroßGetậl[] values;
|
||||||
private int valuesLength;
|
private int valuesLength;
|
||||||
private byte fractalLevel;
|
private byte fractalLevel;
|
||||||
|
|
||||||
public GroßGetậlŌṁglyph(byte fractalLevel) {
|
public GroßGetậlŌṁGlyph(byte fractalLevel) {
|
||||||
this.fractalLevel = fractalLevel;
|
this.fractalLevel = fractalLevel;
|
||||||
this.valuesLength = resolveFractalLevel(fractalLevel);
|
this.valuesLength = resolveFractalLevel(fractalLevel);
|
||||||
this.values = new GroßGetậl[valuesLength];
|
this.values = new GroßGetậl[valuesLength];
|
|
@ -1,6 +1,6 @@
|
||||||
package love.distributedrebirth.demo4d.fraction4d;
|
package love.distributedrebirth.demo4d.fraction4d;
|
||||||
|
|
||||||
public class GroßGetậlŌṁglyphDiamond extends GroßGetậlŌṁglyph<GroßGetậlŌṁglyphDiamond> {
|
public class GroßGetậlŌṁGlyphDiamond extends GroßGetậlŌṁGlyph<GroßGetậlŌṁGlyphDiamond> {
|
||||||
|
|
||||||
// 0th = 1 * V144Tocta (1)
|
// 0th = 1 * V144Tocta (1)
|
||||||
// 1th = 1+3 * V144Tocta (4)
|
// 1th = 1+3 * V144Tocta (4)
|
||||||
|
@ -8,7 +8,7 @@ public class GroßGetậlŌṁglyphDiamond extends GroßGetậlŌṁglyph<GroßG
|
||||||
// 3th = 1+3+6+14 * V144Tocta (24)
|
// 3th = 1+3+6+14 * V144Tocta (24)
|
||||||
// etc
|
// etc
|
||||||
|
|
||||||
public GroßGetậlŌṁglyphDiamond(byte level) {
|
public GroßGetậlŌṁGlyphDiamond(byte level) {
|
||||||
super(level);
|
super(level);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ public class GroßGetậlŌṁglyphDiamond extends GroßGetậlŌṁglyph<GroßG
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected GroßGetậlŌṁglyphDiamond toCloneFractal(byte level) {
|
protected GroßGetậlŌṁGlyphDiamond toCloneFractal(byte level) {
|
||||||
return new GroßGetậlŌṁglyphDiamond(level);
|
return new GroßGetậlŌṁGlyphDiamond(level);
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -0,0 +1,23 @@
|
||||||
|
package love.distributedrebirth.demo4d.fraction4d;
|
||||||
|
|
||||||
|
public class GroßGetậlŌṁGlyphHyperStar extends GroßGetậlŌṁGlyph<GroßGetậlŌṁGlyphHyperStar> {
|
||||||
|
|
||||||
|
// 0th = V144Tocta
|
||||||
|
// 1th = 5 * V144Tocta
|
||||||
|
// 2th = 5 * 12 * V144Tocta
|
||||||
|
// etc
|
||||||
|
|
||||||
|
public GroßGetậlŌṁGlyphHyperStar(byte level) {
|
||||||
|
super(level);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected int resolveFractalLevel(byte level) {
|
||||||
|
// TODO
|
||||||
|
return level;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected GroßGetậlŌṁGlyphHyperStar toCloneFractal(byte level) {
|
||||||
|
return new GroßGetậlŌṁGlyphHyperStar(level);
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,23 +0,0 @@
|
||||||
package love.distributedrebirth.demo4d.fraction4d;
|
|
||||||
|
|
||||||
public class GroßGetậlŌṁglyphHyperStar extends GroßGetậlŌṁglyph<GroßGetậlŌṁglyphHyperStar> {
|
|
||||||
|
|
||||||
// 0th = V144Tocta
|
|
||||||
// 1th = 5 * V144Tocta
|
|
||||||
// 2th = 5 * 12 * V144Tocta
|
|
||||||
// etc
|
|
||||||
|
|
||||||
public GroßGetậlŌṁglyphHyperStar(byte level) {
|
|
||||||
super(level);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected int resolveFractalLevel(byte level) {
|
|
||||||
// TODO
|
|
||||||
return level;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected GroßGetậlŌṁglyphHyperStar toCloneFractal(byte level) {
|
|
||||||
return new GroßGetậlŌṁglyphHyperStar(level);
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in a new issue