Add derive(Debug) for BoundingBox

This commit is contained in:
Matthew Gordon 2020-01-30 16:43:21 -05:00
parent 1044fc3986
commit 89aed89b85
1 changed files with 1 additions and 0 deletions

View File

@ -84,6 +84,7 @@ impl<T: RealField> Interval<T> {
} }
} }
#[derive(Debug)]
pub struct BoundingBox<T: RealField> { pub struct BoundingBox<T: RealField> {
bounds: [Interval<T>; 3], bounds: [Interval<T>; 3],
} }