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
use crate::V2;

pub trait Scale2D {
    fn scale_2d(&self, factor: V2) -> Self;
    fn scale_2d_mut(&mut self, factor: V2);
}