mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2026-04-12 18:56:14 +00:00
Cleanup
This commit is contained in:
@@ -19,6 +19,7 @@
|
||||
package com.volmit.iris.engine.noise;
|
||||
|
||||
import com.volmit.iris.Iris;
|
||||
import com.volmit.iris.engine.interpolation.IrisInterpolation;
|
||||
import com.volmit.iris.engine.object.common.IRare;
|
||||
import com.volmit.iris.engine.stream.ProceduralStream;
|
||||
import com.volmit.iris.engine.stream.arithmetic.FittedStream;
|
||||
@@ -26,7 +27,6 @@ import com.volmit.iris.engine.stream.sources.CNGStream;
|
||||
import com.volmit.iris.util.collection.KList;
|
||||
import com.volmit.iris.util.function.NoiseInjector;
|
||||
import com.volmit.iris.util.math.RNG;
|
||||
import com.volmit.iris.engine.interpolation.IrisInterpolation;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@@ -598,7 +598,7 @@ public class FastNoiseDouble {
|
||||
long y1 = y0 + 1;
|
||||
long z1 = z0 + 1;
|
||||
|
||||
double xs=0, ys=0, zs=0;
|
||||
double xs = 0, ys = 0, zs = 0;
|
||||
switch (m_longerp) {
|
||||
case Linear -> {
|
||||
xs = x - x0;
|
||||
@@ -696,7 +696,7 @@ public class FastNoiseDouble {
|
||||
long x1 = x0 + 1;
|
||||
long y1 = y0 + 1;
|
||||
|
||||
double xs=0, ys=0;
|
||||
double xs = 0, ys = 0;
|
||||
switch (m_longerp) {
|
||||
case Linear -> {
|
||||
xs = x - x0;
|
||||
@@ -794,7 +794,7 @@ public class FastNoiseDouble {
|
||||
long y1 = y0 + 1;
|
||||
long z1 = z0 + 1;
|
||||
|
||||
double xs=0, ys=0, zs=0;
|
||||
double xs = 0, ys = 0, zs = 0;
|
||||
switch (m_longerp) {
|
||||
case Linear -> {
|
||||
xs = x - x0;
|
||||
@@ -1886,7 +1886,7 @@ public class FastNoiseDouble {
|
||||
long y1 = y0 + 1;
|
||||
long z1 = z0 + 1;
|
||||
|
||||
double xs=0, ys=0, zs=0;
|
||||
double xs = 0, ys = 0, zs = 0;
|
||||
switch (m_longerp) {
|
||||
case Linear -> {
|
||||
xs = xf - x0;
|
||||
@@ -1969,7 +1969,7 @@ public class FastNoiseDouble {
|
||||
long x1 = x0 + 1;
|
||||
long y1 = y0 + 1;
|
||||
|
||||
double xs=0, ys=0;
|
||||
double xs = 0, ys = 0;
|
||||
switch (m_longerp) {
|
||||
case Linear -> {
|
||||
xs = xf - x0;
|
||||
|
||||
Reference in New Issue
Block a user