psychopath/src/boundable.rs

8 lines
106 B
Rust

#![allow(dead_code)]
use bbox::BBox;
pub trait Boundable {
fn bounds<'a>(&'a self) -> &'a [BBox];
}