1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! Tested, `const fn` versions of libm float math functions. e.g. `use deep_time::math::sin;`
//!
//! Re-exports of `sin`, `cos`, `tan`, `atan`, `atan2`, `floor_f`, `rem_euclid_f`, `sqrt`, `log`.
pub use atan;
pub use atan2;
pub use cos;
pub use rem_euclid_f;
pub use floor_f;
pub use log;
pub use powi;
pub use sin;
pub use sqrt;
pub use tan;
use *;
use *;
use *;
use *;
use *;
use *;