9 lines
97 B
Rust
9 lines
97 B
Rust
#![allow(dead_code)]
|
|
|
|
use bbox::BBox;
|
|
|
|
|
|
pub trait Boundable {
|
|
fn bounds(&self) -> &[BBox];
|
|
}
|