psychopath/src/boundable.rs

8 lines
103 B
Rust

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