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

pub trait BoundingBox {
    fn bounding_box(&self) -> Option<Rect>;
}