turtle-svg 0.1.1

Turtle graphics, SVG rendering
Documentation
1
2
3
4
5
6
7
pub trait Range<T: Sized + PartialEq + PartialOrd> {

    const MIN: T;
    const MAX: T;

    fn is_in_range(&self) -> bool;
}