Bounds

Trait Bounds 

Source
pub trait Bounds {
    // Required method
    fn bounds(&self) -> (Point, Point);

    // Provided methods
    fn mins(&self) -> Point { ... }
    fn maxs(&self) -> Point { ... }
}
Expand description

get the boundary of a fragment this is used for sorting the fragments in a consistent sorted order

Required Methods§

Source

fn bounds(&self) -> (Point, Point)

Provided Methods§

Source

fn mins(&self) -> Point

Source

fn maxs(&self) -> Point

Implementors§