auburn 0.1.4

Fast and simple physics library.
Documentation
use super::*;

#[derive(Default)]
pub struct Isotropic2d {
    pos: Vec2,
    rot: Rotor2d,
    scale: f32,
}

impl Transformation2d for Isotropic2d {
    fn apply_origin(&self) -> Vec2 {
        todo!()
    }

    fn apply(&self, point: Vec2) -> Vec2 {
        todo!()
    }

    fn unapply(&self, point: Vec2) -> Vec2 {
        todo!()
    }
}

impl Invertible for Isotropic2d {
    fn inverse(&self) -> Self {
        todo!()
    }
}

impl Composable for Isotropic2d {
    fn compose(&self, other: &Self) -> Self {
        todo!()
    }
}