Reformated

This commit is contained in:
Frank 2022-06-08 20:57:21 +02:00
parent 079b51e3f6
commit 852e5a6abc
385 changed files with 6924 additions and 5656 deletions

View file

@ -2122,7 +2122,7 @@ public class OpenSimplexNoise {
dy_ext0,
dz_ext0,
dw_ext0
);
);
}
// Second extra vertex
@ -2138,7 +2138,7 @@ public class OpenSimplexNoise {
dy_ext1,
dz_ext1,
dw_ext1
);
);
}
// Third extra vertex
@ -2154,7 +2154,7 @@ public class OpenSimplexNoise {
dy_ext2,
dz_ext2,
dw_ext2
);
);
}
return value / NORM_CONSTANT_4D;

View file

@ -1,9 +1,9 @@
package org.betterx.bclib.noise;
import net.minecraft.core.BlockPos;
import org.betterx.bclib.util.MHelper;
import net.minecraft.core.BlockPos;
import java.util.Random;
public class VoronoiNoise {