-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathDemoDirectionField02.kt
55 lines (47 loc) · 1.69 KB
/
DemoDirectionField02.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
import org.openrndr.application
import org.openrndr.color.ColorRGBa
import org.openrndr.draw.ColorType
import org.openrndr.draw.createEquivalent
import org.openrndr.drawImage
import org.openrndr.extra.color.colormatrix.constant
import org.openrndr.extra.color.colormatrix.tint
import org.openrndr.extra.jumpfill.DirectionalField
import org.openrndr.extra.noise.scatter
import org.openrndr.math.IntVector2
import org.openrndr.math.Vector3
import org.openrndr.math.clamp
/**
* Create directional distance field and demonstrate signed distance
*/
fun main() = application {
configure {
width = 720
height = 720
}
program {
val input = drawImage(width, height, contentScale = 1.0) {
val points = drawer.bounds.scatter(100.0)
drawer.circles(points, 50.0)
}
val filter = DirectionalField()
val ddf = input.createEquivalent(type = ColorType.FLOAT32)
filter.signedMagnitude = true
filter.unitDirection = true
filter.apply(input, ddf)
ddf.shadow.download()
extend {
val p = (mouse.position * ddf.contentScale).toInt().clamp(
IntVector2.ZERO,
IntVector2(width - 1, height - 1)
)
val c = ddf.shadow[p.x, p.y]
val sdf3 = Vector3(c.r, c.g, c.b)
drawer.drawStyle.colorMatrix = constant(ColorRGBa.WHITE.shade(0.5)) * tint(ColorRGBa.WHITE.shade(0.5))
drawer.image(ddf)
drawer.fill = null
drawer.stroke = ColorRGBa.WHITE
drawer.circle(mouse.position, sdf3.z / ddf.contentScale)
drawer.lineSegment(mouse.position, mouse.position + sdf3.xy * sdf3.z)
}
}
}