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::{SampleSettings, V2};

pub trait ClosestPoint {
    fn closest_point(&self, sample_settings: SampleSettings, point: V2) -> Option<V2>;
}