b86c9c847cb096212affd761d8fffe3de0a81a6c
Merge branch 'feature/7/kinect1Support' of https://github.com/morisil/orx into morisil-feature/7/kinect1Support
ORX (OPENRNDR EXTRA)
A growing library of assorted data structures, algorithms and utilities.
orx-camera, 3d camera and controlsorx-compositor, a simple toolkit to make composite (layered) imagesorx-easing, a collection of easing functions.orx-file-watcher,Programextension method that allows monitoring and hot loading from files.orx-filter-extension,Programextension method that provides Filter basedextend()orx-integral-image, CPU-based and GPU-based implementation for integral images (summed area tables)orx-interval-tree, datastructure for accelerating point-in-interval queries.orx-jumpflood, a filter/shader based implementation of the jump flood algorithm for finding fast approximate (directional) distance fieldsorx-kdtree, a kd-tree implementation for fast nearest point searchesorx-kinect-v1, utilities to use Kinect V1 RGB-D sensors in OPENRNDR programs.orx-mesh-generators, triangular mesh generatorsorx-midi, midi controller interfaceorx-noise, library for random number generation and noiseorx-no-clear, a simple extension that provides drawing without clearing the backgroundorx-obj-loader, simple Wavefront .obj mesh loader
Usage
ORX 0.0.32 is built against OPENRNDR 0.3.35, make sure you use this version in your project. Because OPENRNDR's API is pre 1.0 it tends to change from time to time.
The easiest way to add ORX to your project is through the use of Jitpack. Jitpack is a service that pulls Gradle based libraries from Github, builds them and serves the jar files.
To setup Jitpack support in your project all you have to do is add the Jitpack repository to your repositories {}. It is advised to have the jitpack repository as the last entry.
repositories {
maven { url 'https://jitpack.io' }
}
You can then add any of the ORX artifacts to your dependencies {}:
dependencies {
compile 'com.github.openrndr.orx:<orx-artifact>:v0.0.32'
}
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.32'
}
Description
Languages
Kotlin
69.3%
JavaScript
26.1%
GLSL
3.5%
ANTLR
1%