Mateusz Pusz
Mateusz Pusz
If you need any help getting started, please don't hesitate to let me know. I believe that not only strong units and quantities but also the affine space abstraction can...
I am not aware of such a project. However, if I understand correctly, you already use fundamental unsafe types in your interfaces. If so, you can easily conditionally add additional...
I thought about most if not all, functions from the `mp_units/math.h` header. Additionally, things like `lerp` and `midpoint` should be provided for `quantity_point`.
> and mp-units constants do not convert to quantities Are constants in Au modeled as units that convert to quantities?
But I assume that such a constant is a part of the unit of a quantity and simplifies at compile-time when needed?
I mean something like this: ```cpp constexpr auto c = speed_of_light; quantity q1 = 0.4 * c; quantity q2 = q1 / c; ``` 1. What is the unit of...
Thanks. So, it seems the only drawback of this solution to what we have in mp-units is that a possibly long magnitude of a constant is visible in a quantity...
I am sorry for coming so late to this. I got the following error during build: ``` [11/17] Performing pdf step for 'mp-units_reference_documentations' FAILED: mp-units_reference_documentations-prefix/src/mp-units_reference_documentations-stamp/Release/mp-units_reference_documentations-pdf /home/mpusz/repos/mp-units/build/docs/reference/mp-units_reference_documentations-prefix/src/mp-units_reference_documentations-stamp/Release/mp-units_reference_documentations-pdf cd /home/mpusz/repos/mp-units/build/docs/reference/_jegp_mp-units_reference_documentations_draft_checkout/source && make...
I thought that the issue is that the scripts try to unconditionally remove std.pdf even if it doesn't exist?
Hi @raymundhofmann, `decltype(auto)` is correct. Please note that the library also supports `task`. I don't know what the synchronization problem you are referring to is. The synchronization primitive is used...