- Adjust some demo window sizes. - Replace Random.double by Double.uniform - Tweak some demos so screenshots look more interesting
21 lines
406 B
Kotlin
21 lines
406 B
Kotlin
import org.openrndr.application
|
|
import org.openrndr.extra.propertywatchers.watchingProperty
|
|
|
|
fun main() = application {
|
|
program {
|
|
val state = object {
|
|
val x by watchingProperty(mouse::position) {
|
|
it.x
|
|
}
|
|
|
|
val xx by watchingProperty(::x) {
|
|
it * it
|
|
}
|
|
}
|
|
|
|
extend {
|
|
state.x
|
|
}
|
|
}
|
|
}
|