6 lines
130 B
Rust
6 lines
130 B
Rust
|
//! An Axis-Alighned Bounding Box.
|
||
|
|
||
|
/// An axis-aligned bounding box.
|
||
|
#[derive(Copy, Clone, Debug, PartialEq)]
|
||
|
pub struct AABB {}
|