-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathDemoSimplexRange2D01.kt
61 lines (56 loc) · 2.3 KB
/
DemoSimplexRange2D01.kt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package simplexrange
import org.openrndr.application
import org.openrndr.color.ColorRGBa
import org.openrndr.extra.math.linearrange.rangeTo
import org.openrndr.extra.math.simplexrange.SimplexRange3D
import kotlin.random.Random
import org.openrndr.extra.noise.simplexrange.uniform
import org.openrndr.extra.noise.linearrange.*
/**
* This demo creates a dynamic graphical output utilizing simplex and
* linear interpolation-based color ranges.
*
* Functionalities:
* - Defines a list of base colors converted to LAB color space for smooth interpolation.
* - Constructs a 3D simplex range and a 2D linear range for color sampling.
* - Randomly populates two sections of the screen with rectangles filled with colors
* sampled from simplex and linear ranges respectively.
* - Draws a vertical divider line in the middle of the application window.
*/
fun main() {
application {
configure {
width = 720
height = 720
}
program {
extend {
val colors = listOf(ColorRGBa.BLACK, ColorRGBa.RED, ColorRGBa.GREEN, ColorRGBa.BLUE).map { it.toLABa() }
drawer.stroke = null
val sr = SimplexRange3D(colors[0], colors[1], colors[2], colors[3])
val lr = (colors[0]..colors[1])..(colors[2]..colors[3])
val r = Random((seconds * 2).toInt())
// Draw the simplex sampling on the left
drawer.rectangles {
for (y in 0 until 40) {
for (x in 0 until 20) {
fill = sr.uniform(r).toRGBa()
rectangle(x * width / 40.0, y * height / 40.0, width / 40.0, height / 40.0)
}
}
}
// Draw the bilinear sampling on the right
drawer.rectangles {
for (y in 0 until 40) {
for (x in 20 until 40) {
fill = lr.uniform(r).toRGBa()
rectangle(x * width / 40.0, y * height / 40.0, width / 40.0, height / 40.0)
}
}
}
drawer.stroke = ColorRGBa.BLACK
drawer.lineSegment(drawer.bounds.vertical(0.5))
}
}
}
}