bitshifter / glam-rs

A simple and fast linear algebra library for games and graphics
Apache License 2.0
1.46k stars 145 forks source link

Fix clippy::legacy_numeric_constants lints. #505

Closed waywardmonkeys closed 3 months ago

waywardmonkeys commented 3 months ago

The std::f64::EPSILON and similar constants are being deprecated and it is encouraged to use the associated constants on f32 and f64 instead.

waywardmonkeys commented 3 months ago

This is a newer lint that is present in the nightly clippy.

bitshifter commented 3 months ago

Thanks!