From db964c6d81c24aca3eb8a654e7b2a92cadb4a93a Mon Sep 17 00:00:00 2001 From: OPENRNDR Actions Date: Wed, 5 Apr 2023 08:09:08 +0000 Subject: [PATCH] add demos to README.md --- orx-kdtree/README.md | 10 ++++++++++ orx-mesh-generators/README.md | 5 +++++ orx-temporal-blur/README.md | 11 +++++++++++ 3 files changed, 26 insertions(+) diff --git a/orx-kdtree/README.md b/orx-kdtree/README.md index 5edf5178..ba0551ac 100644 --- a/orx-kdtree/README.md +++ b/orx-kdtree/README.md @@ -4,7 +4,17 @@ Fast search of the point closest to the queried point in a data set. 2D, 3D and ## Demos +### DemoKNearestNeighbour01 +[source code](src/demo/kotlin/DemoKNearestNeighbour01.kt) + +![DemoKNearestNeighbour01Kt](https://raw.githubusercontent.com/openrndr/orx/media/orx-kdtree/images/DemoKNearestNeighbour01Kt.png) + ### DemoNearestNeighbour01 [source code](src/demo/kotlin/DemoNearestNeighbour01.kt) ![DemoNearestNeighbour01Kt](https://raw.githubusercontent.com/openrndr/orx/media/orx-kdtree/images/DemoNearestNeighbour01Kt.png) + +### DemoRangeQuery01 +[source code](src/demo/kotlin/DemoRangeQuery01.kt) + +![DemoRangeQuery01Kt](https://raw.githubusercontent.com/openrndr/orx/media/orx-kdtree/images/DemoRangeQuery01Kt.png) diff --git a/orx-mesh-generators/README.md b/orx-mesh-generators/README.md index 80007572..3a225dde 100644 --- a/orx-mesh-generators/README.md +++ b/orx-mesh-generators/README.md @@ -59,6 +59,11 @@ fun boxMesh( ![DemoComplex05Kt](https://github.com/openrndr/orx/blob/media/orx-mesh-generators/images/DemoComplex05Kt.png ## Demos +### DemoAll +[source code](src/demo/kotlin/DemoAll.kt) + +![DemoAllKt](https://raw.githubusercontent.com/openrndr/orx/media/orx-mesh-generators/images/DemoAllKt.png) + ### DemoBox [source code](src/demo/kotlin/DemoBox.kt) diff --git a/orx-temporal-blur/README.md b/orx-temporal-blur/README.md index 3f30615c..86ccaca2 100644 --- a/orx-temporal-blur/README.md +++ b/orx-temporal-blur/README.md @@ -39,3 +39,14 @@ extend(TemporalBlur()) { ``` + +## Demos +### DemoBasic01 +[source code](src/demo/kotlin/DemoBasic01.kt) + +![DemoBasic01Kt](https://raw.githubusercontent.com/openrndr/orx/media/orx-temporal-blur/images/DemoBasic01Kt.png) + +### DemoColorShift01 +[source code](src/demo/kotlin/DemoColorShift01.kt) + +![DemoColorShift01Kt](https://raw.githubusercontent.com/openrndr/orx/media/orx-temporal-blur/images/DemoColorShift01Kt.png)