vkahl

Results 3 issues of vkahl

The Float macro is referencing ::std::num::FpCategory and thus doesn't work with no_std yet. Replacing it with ::core::num::FpCategory shouldn't break any existing code but provides no_std compatibility when needed. After doing...

All these method calls are delegated to the corresponding methods on the underlying primitive types (`f32` or `f64`). For all methods returning floats, these are getting converted to `Fast`. Of...

breaking-change

I've got a use case where I'd like to store a `Projection` (created using `Projection::from_control_points`) in a database. Of course I _can_ just store the control points and recalculate the...