summaryrefslogtreecommitdiffstats
path: root/src/runner.js
Commit message (Collapse)AuthorAgeFilesLines
* Rename files so that they reflect their exported classes (see next commit)Ulrich-Matthias Schäfer2018-10-251-928/+0
|
* fix testsUlrich-Matthias Schäfer2018-10-181-31/+0
|
* add babel, satisfy linter, build distUlrich-Matthias Schäfer2018-10-171-130/+140
|
* fixing testsUlrich-Matthias Schäfer2018-10-101-1/+1
|
* Optimized the matrix functions so that the transform function is a multitude ↵Ulrich-Matthias Schäfer2018-10-081-7/+6
| | | | faster for parameterized input
* make sure, that we use the correct startTransformUlrich-Matthias Schäfer2018-09-211-8/+7
|
* make sure runner[0] always exists (rework that requirement!)Ulrich-Matthias Schäfer2018-09-211-2/+4
|
* adding optimized transformation function to speed up things a tiny bitUlrich-Matthias Schäfer2018-09-201-7/+13
|
* finally solve transformations one and for all time!Ulrich-Matthias Schäfer2018-09-201-79/+88
| | | | This is great - we should party hard. I mean - it took like 4 month to get this done. That's way to much! I don't want anymore. Pease send help :D
* fix transformations introducing target transforms with which the origin can ↵Ulrich-Matthias Schäfer2018-09-171-7/+32
| | | | be transformed
* Refactored the getOrigin helper to help fix the relative affine animationsSaivan2018-09-171-2/+12
| | | | | | | | | | This commit refactors the getOrigin helper, in order to send the origin to the correct space. The origin should be expressed in the space of the last animation. Changes ======= - Refactored the getOrigin helper - Added a simple example to the dirty file to test multiple transformations
* Fixed the relative non-affine transform animationsSaivan2018-09-171-18/+29
| | | | | | | | | This commit uncovered an issue with the relative non-affine transformations. It is now correctly fixed and working. Next we should fix the affine transforms as well. Changes ======= - Fixed the relative non-affine transformation animations
* Added a simple example for relative declarative animationsSaivan2018-07-111-1/+1
| | | | | | | | | This commit adds an example that demonstrates how I'd imagine declarative animations should work and how they should mirror what imperative animations would do Changes ======= - Added a simple declarative example
* condens transform function to an overall more stable oneUlrich-Matthias Schäfer2018-07-081-119/+69
|
* Fixed the transformation code to use the bbox properlySaivan2018-07-051-23/+22
| | | | | This commit fixes the transformations and allows single animated transformations to properly work.
* fix origin transformationUlrich-Matthias Schäfer2018-07-041-24/+25
|
* Worked towards setting the origin on each frame with linear algebraSaivan2018-07-041-8/+54
| | | | | This commit attempts to modify the origin on each frame, but it seems that we have some kind of bug that we need to fix first
* fix rotation issue and make relative declaritive workUlrich-Matthias Schäfer2018-06-291-32/+38
|
* Added a potential fix for the problemSaivan2018-06-291-0/+7
|
* fix origin bugUlrich-Matthias Schäfer2018-06-281-16/+4
|
* Add a few debugging statementsSaivan2018-06-281-1/+5
|
* Modified the behaviour of absolute transformsSaivan2018-06-281-4/+23
| | | | | This commit slightly modifies the behaviour of absolute transforms, we will get them working soon :D
* fix origin for relative transformationsUlrich-Matthias Schäfer2018-06-271-9/+7
|
* Allowed the origin to stay fixed as we animate transformsSaivan2018-06-261-0/+24
| | | | | | | | | | | This commit start to remove the expensive bbox calculation by assuming that the origin stays at a fixed point during an animation. This is a good assumption as transforms don't change the bbox of the element. Changes ======= - Refactor the Element.transform function - Make a getOrigin function to call the bbox only one time
* make transformations retargatable for declaritiveUlrich-Matthias Schäfer2018-06-261-66/+30
|
* Runners now work with absolute and relative transformationsSaivan2018-06-231-117/+138
| | | | | | This commit finally gets transformations workin in both absolute and relative mode. This is the last **major** hurdle for the new animation module, so we just need to clean it up and fix some bugs 🐞
* fix merging of transformationsUlrich-Matthias Schäfer2018-06-041-5/+28
|
* replace runner set with array and order array for faster access and saving ↵Ulrich-Matthias Schäfer2018-06-031-2/+0
| | | | of start time
* transforms work with multiple elements too. Satisfy linterUlrich-Matthias Schäfer2018-06-031-38/+5
|
* transformation works now for ONE element. More work requiredUlrich-Matthias Schäfer2018-06-031-30/+65
|
* first tries to make transformations workUlrich-Matthias Schäfer2018-06-021-18/+63
|
* Began implementing the transformation functionsSaivan2018-06-021-19/+66
|
* The timelines continue function requests a step animation frameSaivan2018-06-011-12/+18
|
* renamed method names as suggested, added failing testUlrich-Matthias Schäfer2018-06-011-9/+7
|
* Simplified the stepping logic to avoid detecting edge casesSaivan2018-06-011-64/+56
|
* implements Set for runners in timelineUlrich-Matthias Schäfer2018-05-311-1/+2
|
* fix for the endvalue of the animationUlrich-Matthias Schäfer2018-05-311-4/+30
|
* Fixed the final position while swingingSaivan2018-05-311-10/+11
|
* worked a bit on timeline, build example, found bug which needs a fixUlrich-Matthias Schäfer2018-05-301-11/+17
|
* The runners step was reimplemented with testsSaivan2018-05-311-68/+73
|
* fixed declaritive again, fromArray now works on all object instancesUlrich-Matthias Schäfer2018-05-301-13/+18
|
* implemented EventTarget + runner does not loop forever anymoreUlrich-Matthias Schäfer2018-05-291-14/+12
|
* Got looping working with only a single waitSaivan2018-05-301-32/+30
|
* Looping is now working and code is generally cleanerSaivan2018-05-291-127/+112
|
* fix declaritiveUlrich-Matthias Schäfer2018-05-291-4/+8
|
* Diagnosing the declarative animations and suggesting changesSaivan2018-05-291-15/+14
|
* implement methods, reorganize runner, list questionsUlrich-Matthias Schäfer2018-05-291-73/+143
|
* Started planning the way events work and got Spring workingSaivan2018-05-281-7/+32
|
* Fixed all of the low hanging problems so declarative worksSaivan2018-05-261-53/+54
|
* simple fix for morpharrayUlrich-Matthias Schäfer2018-05-251-4/+1
|