From 22e8ab6479334206f97b0093f6c5ffd14610cce3 Mon Sep 17 00:00:00 2001
From: Normand Briere <nbriere@noware.ca>
Date: Sun, 18 Aug 2019 20:30:44 -0400
Subject: [PATCH] More credits

---
 Box.java |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/Box.java b/Box.java
index 54fd02d..b674d00 100644
--- a/Box.java
+++ b/Box.java
@@ -1,5 +1,6 @@
 public class Box extends Object3D implements java.io.Serializable
 {
+    static final long serialVersionUID = 0;
 
     Box()
     {
@@ -78,7 +79,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)
@@ -105,10 +106,10 @@
     cVector minima;
     cVector maxima;
     static float umap[] = {
-        0, 1, 0, 1, 1, 0, 1, 0
+        0, 1, 0, 1, 1, 0, 1, 0,
     };
     static float vmap[] = {
-        0, 0, 1, 1, 1, 1, 0, 0
+        1, 1, 0, 0, 1, 1, 0, 0,
     };
     static int faces[][] = {
         {

--
Gitblit v1.6.2