kaede 0.1.2

Kaede adalah rust library untuk operasi matematika sederhana.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub fn sec(x: f64) -> f64 {
    1.0 / x.cos()
}

pub fn csc(x: f64) -> f64 {
    1.0 / x.sin()
}

pub fn cot(x: f64) -> f64 {
    1.0 / x.tan()
}