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