9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-26 02:29:14 +00:00
This commit is contained in:
Daniel Mills
2020-08-18 16:02:07 -04:00
parent 9ca8739514
commit 4dfd033435
2 changed files with 0 additions and 9 deletions

View File

@@ -1,13 +1,9 @@
package com.volmit.iris.util;
import com.volmit.iris.noise.CNG;
import com.volmit.iris.object.InterpolationMethod;
import com.volmit.iris.object.NoiseStyle;
public class IrisInterpolation
{
private static CNG cng = NoiseStyle.IRIS_DOUBLE.create(RNG.r);
public static double bezier(double t)
{
return t * t * (3.0d - 2.0d * t);