Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-06-18 | api/simple-mat: allow for casts to num* and const | Stanislaw Halik | |
Due to memory layout we don't need enable_if for vector. | |||
2016-06-16 | all: split "api" into "api" and "logic" | Stanislaw Halik | |
Here, the "logic" module has all the stuff for building one's own graphical user interface. The "api" module has stuff used by other trackers. While at it, each of "api", "logic", and "compat" need their own export headers. This is because of preprocessor symbol clashes. This is all because a change in the "gui"-only dependency required a relink of all the trackers, protocols, and flters. It takes too long when building in the release configuration. With the split, only the "gui" module gets rebuilt. Since it has close to no static dependencies, it's fast enough. | |||
2016-06-15 | api: remove euler filter | Stanislaw Halik | |
This isn't a proper way to handle the multiple solutions problem. Even after fixing degree/radian confusion it didn't work. | |||
2016-06-14 | api/simple-mat: allow for vector -> const double* conversion | Stanislaw Halik | |
2016-06-14 | api/simple-mat: move euler stuff to dedicated namespace | Stanislaw Halik | |
2016-06-14 | api/simple-mat: drop __restrict, clang complains | Stanislaw Halik | |
2016-06-14 | api/simple-mat: drop pointless, wrong fmod | Stanislaw Halik | |
Also use fabs instead of abs. | |||
2015-12-18 | api/mat: fix typos/breakage | Stanislaw Halik | |
2015-11-01 | simple-mat: nix porked ctor | Stanislaw Halik | |
2015-08-31 | simple-mat: add __restrict for GNU | Stanislaw Halik | |
2015-08-22 | simple-mat: fix arglist SFINAE | Stanislaw Halik | |
Constructor was always available, enable_if faultily allowed it to accept an arbitrary amount of parameters. The `assignable' bit is redundant and broken, anyway static_cast<num>(x)... takes care of type compatibility. | |||
2015-08-22 | simple-mat: can use static_cast here | Stanislaw Halik | |
2015-08-22 | props changed only | Stanislaw Halik | |
Some source files had executable bit on. Remove it. | |||
2015-08-18 | simple-mat: replace initializer_list with variadic ctor | Stanislaw Halik | |
Gives us type safety rather than argument count mismatch. Also there's no more narrowing conversion issue. Replace usages. Explicitly delete initializer_list ctor. | |||
2015-08-18 | simple-mat: __inline -> inline for C++ | Stanislaw Halik | |
2015-08-18 | simple-mat: don't inline so much | Stanislaw Halik | |
2015-08-11 | simple-mat: open-code more, add comment | Stanislaw Halik | |
2015-08-11 | simple-mat: open-code operator()(x, y) calls | Stanislaw Halik | |
2015-07-19 | fix osx, app bundle now builds | Stanislaw Halik | |
2015-07-07 | opentrack-api: add copyright notices | Stanislaw Halik | |
Code without a license defaults to having all rights reserved. | |||
2015-06-16 | simple-mat: allow pitch axis go -180->180 | Stanislaw Halik | |
To be reverted if broken | |||
2015-06-03 | simple-mat: pass -Wall -Wextra -pedantic | Stanislaw Halik | |
2015-06-01 | simple-mat: fix scalar multiplication | Stanislaw Halik | |
2015-06-01 | simple-mat: implement dot and cross product | Stanislaw Halik | |
2015-06-01 | simple-mat: implement vector indexing | Stanislaw Halik | |
2014-12-19 | mat: add addition and subtraction operators | Stanislaw Halik | |
2014-12-18 | const correctness | Stanislaw Halik | |
2014-12-15 | move rmat->euler and euler->rmat conversions to header | Stanislaw Halik | |
2014-11-07 | simple-mat inits without a temp array now | Stanislaw Halik | |
2014-11-07 | nix unused typedef | Stanislaw Halik | |
2014-11-01 | add simple matrix operations impl | Stanislaw Halik | |