Edwin Jakobs b86c9c847c Add data binding for orx-gradient-descent
Add 0 check in minimizer
2019-09-24 18:18:25 +02:00
2019-05-21 00:15:05 +02:00
2019-04-11 16:14:28 +02:00
2019-01-26 21:24:58 +01:00
2019-08-14 15:45:18 +02:00
2019-04-26 14:36:42 +02:00
2019-01-26 21:24:58 +01:00
2019-05-18 01:25:12 +02:00
2019-08-24 00:24:10 +02:00
2019-08-05 18:44:32 +02:00
2019-08-05 18:44:32 +02:00
2019-08-05 18:44:32 +02:00
2019-08-05 18:47:57 +02:00
2018-10-04 22:58:28 +02:00
2019-09-19 16:18:19 +02:00

ORX (OPENRNDR EXTRA)

A growing library of assorted data structures, algorithms and utilities.

  • orx-camera, 3d camera and controls
  • orx-compositor, a simple toolkit to make composite (layered) images
  • orx-easing, a collection of easing functions.
  • orx-file-watcher, Program extension method that allows monitoring and hot loading from files.
  • orx-filter-extension, Program extension method that provides Filter based extend()
  • 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 fields
  • orx-kdtree, a kd-tree implementation for fast nearest point searches
  • orx-kinect-v1, utilities to use Kinect V1 RGB-D sensors in OPENRNDR programs.
  • orx-mesh-generators, triangular mesh generators
  • orx-midi, midi controller interface
  • orx-noise, library for random number generation and noise
  • orx-no-clear, a simple extension that provides drawing without clearing the background
  • orx-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
No description provided
Readme BSD-2-Clause 15 MiB
Languages
Kotlin 69.3%
JavaScript 26.1%
GLSL 3.5%
ANTLR 1%