Lots of crap

This commit is contained in:
cyberpwn
2022-04-14 20:40:37 -04:00
parent a40e533068
commit 185b366d8d
7 changed files with 141 additions and 1 deletions

View File

@@ -128,6 +128,11 @@ public class IrisGeneratorStyle {
return cng;
}
public double warp(RNG rng, IrisData data, double value, double... coords)
{
return create(rng, data).noise(coords) + value;
}
public CNG create(RNG rng, IrisData data) {
return cng.aquire(() -> createNoCache(rng, data));
}