Missed capital G for Glyph.

This commit is contained in:
Willem Cazander 2022-01-30 11:30:57 +01:00
parent 1578c214d2
commit 1cfa01e989
4 changed files with 29 additions and 29 deletions

View file

@ -5,13 +5,13 @@ import love.distributedrebirth.demo4d.base2t.T08PartOctalBaseAppender;
import love.distributedrebirth.demo4d.base2t.T08PartOctalBaseIterator;
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 int valuesLength;
private byte fractalLevel;
public GroßGetậlŌṁglyph(byte fractalLevel) {
public GroßGetậlŌṁGlyph(byte fractalLevel) {
this.fractalLevel = fractalLevel;
this.valuesLength = resolveFractalLevel(fractalLevel);
this.values = new GroßGetậl[valuesLength];

View file

@ -1,6 +1,6 @@
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)
// 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)
// etc
public GroßGetậlŌṁglyphDiamond(byte level) {
public GroßGetậlŌṁGlyphDiamond(byte level) {
super(level);
}
@ -18,7 +18,7 @@ public class GroßGetậlŌṁglyphDiamond extends GroßGetậlŌṁglyph<GroßG
}
@Override
protected GroßGetậlŌṁglyphDiamond toCloneFractal(byte level) {
return new GroßGetậlŌṁglyphDiamond(level);
protected GroßGetậlŌṁGlyphDiamond toCloneFractal(byte level) {
return new GroßGetậlŌṁGlyphDiamond(level);
}
}

View file

@ -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);
}
}

View file

@ -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);
}
}