23 lines
437 B
Markdown
23 lines
437 B
Markdown
# ORX (OPENRNDR EXTRA)
|
|
|
|
A growing library of assorted data structures, algorithms and utilities.
|
|
|
|
- orx-kdtree - kd-tree implementation for fast nearest point searches
|
|
|
|
## Usage
|
|
|
|
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:v0.0.1'
|
|
}
|
|
``` |