Remove unused imports

This commit is contained in:
Abe Pazos
2025-08-04 12:00:35 +02:00
parent e6d176bb9b
commit 6db05951ef
60 changed files with 8 additions and 106 deletions

View File

@@ -1,7 +1,6 @@
package org.openrndr.extra.noise.shapes
import org.openrndr.extra.noise.fhash1D
import org.openrndr.extra.noise.hash
import org.openrndr.math.Polar
import org.openrndr.math.Vector2
import org.openrndr.shape.Circle

View File

@@ -6,12 +6,8 @@ import org.openrndr.draw.DrawPrimitive
import org.openrndr.draw.isolated
import org.openrndr.extra.camera.Orbital
import org.openrndr.extra.meshgenerators.sphereMesh
import org.openrndr.extra.noise.rsequence.rSeq3D
import org.openrndr.extra.noise.rsequence.rSeq4D
import org.openrndr.math.Vector3
import org.openrndr.math.Vector4
import kotlin.math.abs
import kotlin.math.min
/**
* Demo that presents a 3D visualization of points distributed using a 4D quasirandom sequence (R4).

View File

@@ -4,10 +4,8 @@ import org.openrndr.application
import org.openrndr.color.ColorRGBa
import org.openrndr.draw.isolated
import org.openrndr.extra.math.simplexrange.SimplexRange2D
import org.openrndr.extra.math.simplexrange.SimplexRange3D
import org.openrndr.extra.noise.scatter
import kotlin.random.Random
import org.openrndr.extra.noise.simplexrange.uniformSimplex
import org.openrndr.math.Polar
import org.openrndr.math.Vector2
import org.openrndr.shape.Rectangle

View File

@@ -1,6 +1,5 @@
import io.kotest.core.spec.style.DescribeSpec
import org.openrndr.extra.noise.*
import kotlin.test.assertEquals
class TestGradient : DescribeSpec({
describe("Noise") {