mathrc 0.2.2

Rust Mathematics Library
Documentation
#[derive(Debug, Clone, PartialEq)]
pub struct Vector;

pub struct Vector2d;
pub struct Vector3d;

//todo: Vector
impl Vector2d {
    pub fn new() -> Self {
        Self
    }
}

#[cfg(test)]
mod test {
    use super::*;

    #[test]
    fn test() {
    }
}