From 0c7b833be7d86598a6813cd1c6db0ca9e1b17966 Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Wed, 21 Aug 2019 23:22:47 -0400 Subject: [PATCH] Clear versions. --- 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