-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathDemoNoisesGLSL.kt
72 lines (68 loc) · 2.38 KB
/
DemoNoisesGLSL.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
62
63
64
65
66
67
68
69
70
71
72
package glsl
import org.openrndr.application
import org.openrndr.draw.colorBuffer
import org.openrndr.extra.noise.filters.*
import org.openrndr.math.Vector2
import org.openrndr.math.Vector3
import org.openrndr.math.Vector4
import kotlin.math.sin
/**
* Render existing GLSL noise algorithms side by side.
* Re-use the same color buffer for the rendering.
* Not all noise properties are used. Explore each noise class
* to find out more adjustable properties.
* The noise color can be set using a `color` or a `gain` property.
*/
fun main() = application {
configure {
width = 720
height = 360
}
program {
val noises = listOf(
HashNoise(), SpeckleNoise(), CellNoise(),
ValueNoise(), SimplexNoise3D(), WorleyNoise()
)
val img = colorBuffer(width / noises.size, height * 8 / 10)
extend {
val seed = seconds * 0.1
val scale = 1.0 + sin(seed) * 0.5
noises.forEach { noise ->
when (noise) {
is HashNoise -> {
noise.seed = seed
noise.gain = Vector4(0.5 + sin(seconds) * 0.5)
noise.monochrome = frameCount % 100 < 50
}
is SpeckleNoise -> {
noise.seed = seed
noise.density = 0.1 + sin(seconds) * 0.1
}
is CellNoise -> {
noise.seed = Vector2(seed)
noise.scale = Vector2(scale)
}
is ValueNoise -> {
noise.seed = Vector2(seed)
noise.scale = Vector2(scale)
noise.gain = Vector4(0.5)
}
is SimplexNoise3D -> {
noise.seed = Vector3(seed)
noise.scale = Vector3(scale)
}
is WorleyNoise -> {
noise.scale = scale
noise.offset = Vector2(seed)
}
}
noise.apply(emptyArray(), img)
drawer.image(img)
drawer.translate(
width / noises.size * 1.0,
height * 2 / 10 / (noises.size - 1.0)
)
}
}
}
}