flo_curves 0.8.0

Library for manipulating Bezier curves
Documentation
1
2
3
4
5
6
7
8
9
use super::coordinate::*;

///
/// Simple base trait implemented by things representing geometry
/// 
pub trait Geo {
    /// The type of a point in this geometry
    type Point: Coordinate;
}