[orx-noise] Add ShapeProvider.poissonDiskSampling

This commit is contained in:
Edwin Jakobs
2021-10-17 17:26:39 +02:00
parent 8808e62431
commit 737f1bcf85
4 changed files with 80 additions and 7 deletions

View File

@@ -0,0 +1,29 @@
import org.openrndr.application
import org.openrndr.color.ColorRGBa
import org.openrndr.extra.noise.poissonDiskSampling
import org.openrndr.math.Vector2
import org.openrndr.math.mod_
import org.openrndr.shape.Circle
import org.openrndr.shape.Ellipse
import kotlin.math.cos
fun main() {
application {
program {
extend {
val shape = Ellipse(Vector2(width/2.0, height/2.0), 200.0, 150.0 + cos(seconds)*125.0).shape
val points = shape.poissonDiskSampling(10.0)
drawer.clear(ColorRGBa.BLACK)
drawer.stroke = null
drawer.fill = ColorRGBa.PINK
drawer.circles(points, 4.0)
if (seconds.mod_(2.0) < 1.0) {
drawer.stroke = ColorRGBa.PINK
drawer.fill = null
drawer.shape(shape)
}
}
}
}
}