From 89c1ad67bc65d24ceadfa9e95f8c5515283f1e97 Mon Sep 17 00:00:00 2001
From: Normand Briere <nbriere@noware.ca>
Date: Sun, 01 Jul 2018 15:45:28 -0400
Subject: [PATCH] Reverse matrix order.

---
 Box.java |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Box.java b/Box.java
index 54fd02d..04886dd 100644
--- a/Box.java
+++ b/Box.java
@@ -78,7 +78,7 @@
 
     void getBounds(cVector min, cVector max, boolean xform)
     {
-        super.getBounds(minima, maxima, xform);
+        super.getBounds(min, max, xform);
 // july 2014        LA.vecCopy(minima, min);
 //        LA.vecCopy(maxima, max);
 //        if (xform)

--
Gitblit v1.6.2