mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2026-06-18 06:41:08 +00:00
Cleanup
This commit is contained in:
@@ -149,10 +149,5 @@
|
|||||||
<artifactId>zt-zip</artifactId>
|
<artifactId>zt-zip</artifactId>
|
||||||
<version>1.14</version>
|
<version>1.14</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
|
||||||
<groupId>org.apache.commons</groupId>
|
|
||||||
<artifactId>commons-math3</artifactId>
|
|
||||||
<version>3.5</version>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</project>
|
</project>
|
||||||
@@ -1,13 +1,9 @@
|
|||||||
package com.volmit.iris.util;
|
package com.volmit.iris.util;
|
||||||
|
|
||||||
import com.volmit.iris.noise.CNG;
|
|
||||||
import com.volmit.iris.object.InterpolationMethod;
|
import com.volmit.iris.object.InterpolationMethod;
|
||||||
import com.volmit.iris.object.NoiseStyle;
|
|
||||||
|
|
||||||
public class IrisInterpolation
|
public class IrisInterpolation
|
||||||
{
|
{
|
||||||
private static CNG cng = NoiseStyle.IRIS_DOUBLE.create(RNG.r);
|
|
||||||
|
|
||||||
public static double bezier(double t)
|
public static double bezier(double t)
|
||||||
{
|
{
|
||||||
return t * t * (3.0d - 2.0d * t);
|
return t * t * (3.0d - 2.0d * t);
|
||||||
|
|||||||
Reference in New Issue
Block a user