From 89aed89b851b117fcdb048778c6e7d4b7b1f9c01 Mon Sep 17 00:00:00 2001 From: Matthew Gordon Date: Thu, 30 Jan 2020 16:43:21 -0500 Subject: [PATCH] Add derive(Debug) for BoundingBox --- src/raycasting/axis_aligned_bounding_box.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/raycasting/axis_aligned_bounding_box.rs b/src/raycasting/axis_aligned_bounding_box.rs index e23bb63..2e6fe92 100644 --- a/src/raycasting/axis_aligned_bounding_box.rs +++ b/src/raycasting/axis_aligned_bounding_box.rs @@ -84,6 +84,7 @@ impl Interval { } } +#[derive(Debug)] pub struct BoundingBox { bounds: [Interval; 3], }