Added orx-filter-extension

- Bumped version to 0.0.11
This commit is contained in:
Edwin Jakobs
2018-11-10 12:55:00 +01:00
parent 72c71eb812
commit 5d46c2ad02
5 changed files with 89 additions and 3 deletions

View File

@@ -3,6 +3,7 @@
A growing library of assorted data structures, algorithms and utilities.
- [`orx-compositor`](orx-compositor/README.md), a simple toolkit to make composite (layered) images
- [`orx-filter-extension`](orx-filter-extension/README.md), Program extension method that provides Filter based `extend()`
- [`orx-integral-image`](orx-integral-image/README.md), a CPU-based implementation for integral images (summed area tables)
- `orx-jumpflood`, a filter/shader based implementation of the jump flood algorithm for finding fast approximate (directional) distance fields
- `orx-kdtree`, a kd-tree implementation for fast nearest point searches
@@ -23,13 +24,13 @@ repositories {
You can then add any of the ORX artefacts to your `dependencies {}`:
```
dependencies {
compile 'com.github.openrndr.orx:<orx-artifact>:v0.0.9'
compile 'com.github.openrndr.orx:<orx-artifact>:v0.0.11'
}
```
For example if you want to use the `orx-no-clear` artifact one would use:
```
dependencies {
compile 'com.github.openrndr.orx:orx-no-clear:v0.0.9'
compile 'com.github.openrndr.orx:orx-no-clear:v0.0.11'
}
```