Project

General

Profile

Statistics
| Branch: | Revision:

library / src / main / java / org / distorted / library / type @ d3725071

# Date Author Comment
cacc63de 12/15/2016 11:37 PM Leszek Koltunski

Fix Lint warnings, correct a lot of comments, adjust EffectListener interface.

24d22f93 11/08/2016 05:02 PM Leszek Koltunski

Progress with WindManager.

bdb341bc 11/08/2016 12:43 PM Leszek Koltunski

Dynamics: Introduce 2 Modes of operation:

- 'random access' mode, where we are able to call a single Dynamic from multiple thread simultaneously.
- 'sequential' mode, which only permits sequential interpolation from one client.

The second mode has an advantage when one needs to change mDuration: it keeps on interpolating smoothly. In the first mode, this is not possible.

65d5505f 11/07/2016 11:04 PM Leszek Koltunski

2 bugfixes:

- in Dynamics, it has to be t<=0.5 (rather than t<0.5) (see comment in code)
- in EffectQueueVertex, we need to postprocess() the last time, when effect is finished but not removed!

20dc919b 11/07/2016 03:59 PM Leszek Koltunski

Minor details

75ec369a 11/04/2016 10:17 AM Leszek Koltunski

Bugfix

86b434a0 11/03/2016 10:03 PM Leszek Koltunski

Bugfix (sometimes, when t=0.5 exactly, it wouldn't recompute Noise in case of PATH mode)

291705f6 11/03/2016 05:21 PM Leszek Koltunski

re-generate noise after passing each Point.

8df64ab9 11/03/2016 10:34 AM Leszek Koltunski

Flag app finished

a36b0cbb 11/02/2016 03:18 PM Leszek Koltunski

Next fixes for issues with 'jumping' path when noise is on. (and a whole lot of commented out debugging)

6a2ebb18 11/02/2016 01:24 PM Leszek Koltunski

Next fixes for issues with 'jumping' path when noise is on. (and a whole lot of commented out debugging)

c6dec65b 11/01/2016 05:20 PM Leszek Koltunski

1. Attempt to deal with unstable Orthonormal Base in Dynamic class (so far unsuccessful)
2. Improvements to the 'Dynamic' (and by necessity, 'MovingEffects') applications (to be able to debug the previous)

ea16dc89 10/21/2016 01:44 PM Leszek Koltunski

minor stuff

1e22c248 10/21/2016 11:34 AM Leszek Koltunski

Fix 4D and 5D noise, make noise N dimensional.

65a21c19 10/21/2016 10:34 AM Leszek Koltunski

Bugfix for the fishy loops in 2D noise.

663fea68 10/21/2016 10:00 AM Leszek Koltunski

Some corrections for the new Noise, it is still fishy though (some suspicious loops form - see it with the ''Dynamics" example app, 2D, 3 points)

649544b8 10/21/2016 01:18 AM Leszek Koltunski

Completely redesign Noise in the Dynamics and move all the complexity to the parent class.

something does not work with it now :)

3002bef3 10/19/2016 12:27 AM Leszek Koltunski

Move most of the NOISE complications from DynamicND classes to the parent Dynamic class.

350cc2f5 10/18/2016 11:19 AM Leszek Koltunski

Make the WAVE effect 5D (extra parameter 'offset')

522eebc8 10/17/2016 11:36 PM Leszek Koltunski

Add Static5D and Dynamic5D.

02ef26bc 08/30/2016 04:29 PM Leszek Koltunski

Preparation to make the WAVE effect fully 3D

65074f5a 07/05/2016 10:34 PM Leszek Koltunski

Minor stuff - comments.

bb7d8484 06/20/2016 10:32 AM Leszek Koltunski

Minor cleanup.

8c893ffc 06/18/2016 10:58 PM Leszek Koltunski

Further reduce the distortedObject's API - now only 26 methods, 1/4 of the 104 before the reorganization.

568b29d8 06/16/2016 12:44 AM Leszek Koltunski

Major push towards simplifying DistortedObject's public API.
All MATRIX effects are using the new API - the 'DataND' marker interfaces.

a4835695 06/15/2016 12:05 PM Leszek Koltunski

move data types, like FlatND and InterpolatorND, to a separate package.