georust / geographiclib-rs

A port of geographiclib in Rust.
MIT License
41 stars 9 forks source link

replace get_min_val with f64 MIN_POSITIVE #2

Open stonylohr opened 4 years ago

stonylohr commented 4 years ago

geomath::get_min_val() calculates a value that is already available in rust as f64::MIN_POSITIVE. It would be preferable to use the existing constant rather than defining a function.

Psykopear commented 4 years ago

Sure, feel free to open a PR with the fix