fixed Box::Extend(Vec3f&)
[MicroTrace.git] / Box.cxx
diff --git a/Box.cxx b/Box.cxx
index febe7c7..6974d42 100644 (file)
--- a/Box.cxx
+++ b/Box.cxx
@@ -42,7 +42,8 @@ Box::Extend(const Vec3f& a)
   for(size_t i = 0; i < 3; i++) {
     if(a[i] > m_max[i]) {
       m_max[i] = a[i];
-    } else if(a[i] < m_min[i]) {
+    }
+    if(a[i] < m_min[i]) {
       m_min[i] = a[i];
     } // else: do nothing, coordinate is inside the box
   }
This page took 0.024592 seconds and 4 git commands to generate.