From a9482e091cc0ee674411959a00794c8bd24cd924 Mon Sep 17 00:00:00 2001 From: Abe Pazos Date: Tue, 23 Sep 2025 22:36:01 +0200 Subject: [PATCH] [orx-jumpflood] Temporarily comment out two demos JumpFlood.kt is currently not compatible with https://github.com/openrndr/openrndr/commit/9871b80161b155bf61371301ce1b7b9cf9a10adf --- .../src/jvmDemo/kotlin/DemoInnerGlow01.kt | 73 ++++++++++--------- .../src/jvmDemo/kotlin/DemoInnerGlow02.kt | 73 ++++++++++--------- 2 files changed, 76 insertions(+), 70 deletions(-) diff --git a/orx-jumpflood/src/jvmDemo/kotlin/DemoInnerGlow01.kt b/orx-jumpflood/src/jvmDemo/kotlin/DemoInnerGlow01.kt index c77ca4ce..5dac1966 100644 --- a/orx-jumpflood/src/jvmDemo/kotlin/DemoInnerGlow01.kt +++ b/orx-jumpflood/src/jvmDemo/kotlin/DemoInnerGlow01.kt @@ -1,36 +1,39 @@ -import org.openrndr.application -import org.openrndr.color.ColorRGBa -import org.openrndr.extra.compositor.compose -import org.openrndr.extra.compositor.draw -import org.openrndr.extra.compositor.layer -import org.openrndr.extra.compositor.post -import org.openrndr.extra.fx.patterns.Checkers -import org.openrndr.extra.jumpfill.fx.InnerGlow +//import org.openrndr.application +//import org.openrndr.color.ColorRGBa +//import org.openrndr.extra.compositor.compose +//import org.openrndr.extra.compositor.draw +//import org.openrndr.extra.compositor.layer +//import org.openrndr.extra.compositor.post +//import org.openrndr.extra.fx.patterns.Checkers +//import org.openrndr.extra.jumpfill.fx.InnerGlow -fun main() = application { - configure { - width = 720 - height = 720 - } - program { - val c = compose { - layer { - post(Checkers()) - } - layer { - draw { - drawer.fill = ColorRGBa.PINK.shade(0.5) - drawer.stroke = null - drawer.circle(width / 2.0, height / 2.0, width * 0.35) - } - post(InnerGlow()) { - color = ColorRGBa(-1.0, -1.0, -1.0, 0.25); - width = 30.0 - } - } - } - extend { - c.draw(drawer) - } - } -} \ No newline at end of file +// Temporarily commented out until JumpFlood.kt is compatible with +// https://github.com/openrndr/openrndr/commit/9871b80161b155bf61371301ce1b7b9cf9a10adf + +//fun main() = application { +// configure { +// width = 720 +// height = 720 +// } +// program { +// val c = compose { +// layer { +// post(Checkers()) +// } +// layer { +// draw { +// drawer.fill = ColorRGBa.PINK.shade(0.5) +// drawer.stroke = null +// drawer.circle(width / 2.0, height / 2.0, width * 0.35) +// } +// post(InnerGlow()) { +// color = ColorRGBa(-1.0, -1.0, -1.0, 0.25); +// width = 30.0 +// } +// } +// } +// extend { +// c.draw(drawer) +// } +// } +//} \ No newline at end of file diff --git a/orx-jumpflood/src/jvmDemo/kotlin/DemoInnerGlow02.kt b/orx-jumpflood/src/jvmDemo/kotlin/DemoInnerGlow02.kt index e008e3ab..f1429256 100644 --- a/orx-jumpflood/src/jvmDemo/kotlin/DemoInnerGlow02.kt +++ b/orx-jumpflood/src/jvmDemo/kotlin/DemoInnerGlow02.kt @@ -1,36 +1,39 @@ -import org.openrndr.application -import org.openrndr.color.ColorRGBa -import org.openrndr.extra.compositor.compose -import org.openrndr.extra.compositor.draw -import org.openrndr.extra.compositor.layer -import org.openrndr.extra.compositor.post -import org.openrndr.extra.fx.patterns.Checkers -import org.openrndr.extra.jumpfill.fx.InnerGlow +//import org.openrndr.application +//import org.openrndr.color.ColorRGBa +//import org.openrndr.extra.compositor.compose +//import org.openrndr.extra.compositor.draw +//import org.openrndr.extra.compositor.layer +//import org.openrndr.extra.compositor.post +//import org.openrndr.extra.fx.patterns.Checkers +//import org.openrndr.extra.jumpfill.fx.InnerGlow -fun main() = application { - configure { - width = 720 - height = 720 - } - program { - val c = compose { - layer { - post(Checkers()) - } - layer { - draw { - drawer.fill = ColorRGBa.PINK.shade(0.5) - drawer.stroke = null - drawer.circle(width / 2.0, height / 2.0, width * 0.35) - } - post(InnerGlow()) { - color = ColorRGBa(1.0, 1.0, 1.0, 0.25); - width = 30.0 - } - } - } - extend { - c.draw(drawer) - } - } -} \ No newline at end of file +// Temporarily commented out until JumpFlood.kt is compatible with +// https://github.com/openrndr/openrndr/commit/9871b80161b155bf61371301ce1b7b9cf9a10adf + +//fun main() = application { +// configure { +// width = 720 +// height = 720 +// } +// program { +// val c = compose { +// layer { +// post(Checkers()) +// } +// layer { +// draw { +// drawer.fill = ColorRGBa.PINK.shade(0.5) +// drawer.stroke = null +// drawer.circle(width / 2.0, height / 2.0, width * 0.35) +// } +// post(InnerGlow()) { +// color = ColorRGBa(1.0, 1.0, 1.0, 0.25); +// width = 30.0 +// } +// } +// } +// extend { +// c.draw(drawer) +// } +// } +//} \ No newline at end of file