Added orx-no-clear

This commit is contained in:
edwin
2018-11-06 15:44:49 +01:00
parent 07598fdbbe
commit 7cec4bddc8
6 changed files with 495 additions and 429 deletions

View File

@@ -1,27 +1,27 @@
# ORX (OPENRNDR EXTRA)
A growing library of assorted data structures, algorithms and utilities.
- orx-kdtree, a kd-tree implementation for fast nearest point searches
- orx-jumpflood, a filter/shader based implementation of the jump flood algorithm for finding fast approximate (directional) distance fields
- orx-integral-image, a CPU-based implementation for integral images (summed area tables)
## Usage
ORX is build against OPENRNDR 0.3.28, make sure you use this version in your project.
Easiest way to add ORX to your project is through the use of Jitpack
Add repository:
```
repositories {
maven { url 'https://jitpack.io' }
}
```
Add dependency:
```
dependencies {
compile 'com.github.openrndr.orx:<orx-artifact>:v0.0.8'
}
```
# ORX (OPENRNDR EXTRA)
A growing library of assorted data structures, algorithms and utilities.
- `orx-integral-image`, 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
- `orx-no-clear`, a simple extension that provides drawing without clearing the background
## Usage
ORX is build against OPENRNDR 0.3.28, make sure you use this version in your project.
Easiest way to add ORX to your project is through the use of Jitpack
Add repository:
```
repositories {
maven { url 'https://jitpack.io' }
}
```
Add dependency:
```
dependencies {
compile 'com.github.openrndr.orx:<orx-artifact>:v0.0.9'
}
```