Add Post extension
This commit is contained in:
27
orx-fx/src/demo/kotlin/DemoPost01.kt
Normal file
27
orx-fx/src/demo/kotlin/DemoPost01.kt
Normal file
@@ -0,0 +1,27 @@
|
||||
import org.openrndr.WindowMultisample
|
||||
import org.openrndr.application
|
||||
import org.openrndr.extra.fx.Post
|
||||
import org.openrndr.extra.fx.blend.Add
|
||||
import org.openrndr.extra.fx.blur.ApproximateGaussianBlur
|
||||
|
||||
fun main() = application {
|
||||
configure {
|
||||
windowResizable = true
|
||||
}
|
||||
program {
|
||||
extend(Post()) {
|
||||
val blur = ApproximateGaussianBlur()
|
||||
val add = Add()
|
||||
post { input, output ->
|
||||
blur.window = 50
|
||||
blur.sigma = 50.0
|
||||
blur.apply(input, intermediate[0])
|
||||
add.apply(arrayOf(input, intermediate[0]), output)
|
||||
}
|
||||
}
|
||||
extend {
|
||||
drawer.circle(width / 2.0, height / 2.0, 100.0)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user