plottery_lib 0.7.0

Core geometry library of Plottery, a creative coding framework for generative vector graphics and pen plotting.
Documentation
1
2
3
4
5
6
7
pub trait Mirror {
    fn mirror_x(&self) -> Self;
    fn mirror_x_mut(&mut self);

    fn mirror_y(&self) -> Self;
    fn mirror_y_mut(&mut self);
}