Cameron Hart

Results 21 issues of Cameron Hart

It's not uncommon to find the direction and length of a vector, but it is a hassle to do it manually. It would be good to have a method for...

1.0

`buildbench` has support for building crates with default features disabled, but often crates are using this to support no_std so it's not representative of a minimal std build. To support...

Whenever I need to update the results in the README it ties my machine up for 30 minutes and counting. It would be good to find some compute resource that...

Debug performance is important for game development, so it would be interesting to include benchmarks for this also.

I just ran into this when upgrading from cgmath 0.7 to cgmath 0.10 (I put it off because a lot of my code broke). While it may not be arithmetically...

It's quite verbose having to type the full type signature for common vector and matrix types when type inference cannot be used, e.g. writing structs or non generic functions. For...

I ran into this when updating to the latest imgui-rs. There used to be `Ui::color_edit3` and `Ui::color_edit4` methods which took `&mut [f32; 3]` and `&mut [f32;4]` parameters respectively. This has...

I have a library which wraps SIMD types and it would be a nice feature if users were able to create const values with my wrapper types. There's currently no...

I don't get this warning when building test or examples but I do when I use nonius in my own project. Not sure why but it's an easy fix. ```...

Tests added using common input values and comparing against the output from original `boost::math` implementations. The normal distribution CDF function is taken from the example code at http://en.cppreference.com/w/cpp/numeric/math/erfc. The `erf_inv`...

enhancement