rename trig.rs -> cossin.rs

master
Matt Huszagh 2020-12-16 15:25:31 -08:00
parent 469c89ea70
commit e89db65722
2 changed files with 2 additions and 1 deletions

View File

@ -18,10 +18,11 @@ pub fn shift_round(x: i32, shift: usize) -> i32 {
(x + (1 << (shift - 1))) >> shift
}
pub mod atan2;
pub mod cossin;
pub mod iir;
pub mod lockin;
pub mod pll;
pub mod trig;
pub mod unwrap;
#[cfg(test)]