Age | Commit message (Collapse) | Author |
|
Adjust usages.
|
|
- the timekeeping handling was incorrect and Hz was lower than expected
- change Hz from 333 to 250 Hz
- adjust track-logger usage
|
|
Adjust usages.
|
|
- no need to declare "inverts" as an array. it's used in only one place
- class Pose is redundant, use an alias for Mat<...>
- declare static constexpr const for logger stuff
|
|
Divide euler angle representation by four. Now 180 maps to 45. Our
conversion back from matrix to euler won't cause gimbal lock anymore. Of
course multiply back when it's time to map.
Keep the real representation for translation compensation.
The value of four got chosen since it's a multiply of two (IEEE float
exponent is base 2).
|
|
write proper header.
|
|
|
|
|
|
They didn't match between rotation and translation again.
|
|
|
|
|
|
This works fine for rotating the translation.
|
|
|
|
|
|
Requested-by: @WF000, white_fang on bms forum
Issue: #392
|
|
|
|
|
|
We can't depend on M_PI existing after including cmath.
|
|
It stays centered this way. Sadly yaw and pitch are still somewhat not
fixed in the user's reference frame.
|
|
|
|
Now that "struct main_settings" doesn't implicitly reload in dtor, we no
longer have to pass it around from the user interface.
Only reload it where it's modified, i.e. in the options dialog. Changing
the filter/dialog/mapping comboboxen implicitly saves the main options
however.
|
|
|
|
The reason for its existence is that we can't rotate translation by
rotation as-is. The signs are wrong and we're not using the XYZ order
for Tait-Bryan either.
The line location was incorrect due to mismerge.
|
|
It's dubious why that line was there. It needs further testing however.
|
|
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.
|