[AUTO] Clean & reformat

This commit is contained in:
dfsek
2020-11-16 23:39:18 -07:00
parent 9a403805c9
commit 2750d46a98
10 changed files with 168 additions and 169 deletions

View File

@@ -40,6 +40,10 @@ public class SimplexCarver extends Carver {
hasCaves.setFrequency(0.005f);
}
private static double acot(double x) {
return Math.PI / 2 - Math.atan(x);
}
@Override
public CarvingData carve(int chunkX, int chunkZ, World w) {
CarvingData c = new CarvingData(chunkX, chunkZ);
@@ -68,10 +72,6 @@ public class SimplexCarver extends Carver {
return c;
}
private static double acot(double x) {
return Math.PI / 2 - Math.atan(x);
}
@Override
public Worm getWorm(long l, Vector vector) {
return null;