From 6266c8a4b2485b29a7d5bcb217460d7aad3e1c4a Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Sun, 25 Aug 2019 20:58:10 -0400 Subject: [PATCH] Proto version slider. --- 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