[orx-noise] Add Rseq and Hammersley sequences

This commit is contained in:
Edwin Jakobs
2025-01-24 11:34:49 +01:00
parent c059b11841
commit c7b81feb5e
9 changed files with 397 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
package rseq
import org.openrndr.application
import org.openrndr.extra.noise.rsequence.rSeq2D
/**
* This demo sets up a window with dimensions 720x720 and renders frames
* demonstrating 2D quasirandomly distributed points. The points are generated
* using the R2 sequence and drawn as circles with a radius of 5.0.
*/
fun main() {
application {
configure {
width = 720
height = 720
}
program {
extend {
val points = (0 until 4000).map {
rSeq2D(it) * 720.0
}
drawer.circles(points, 5.0)
}
}
}
}