summaryrefslogtreecommitdiffstats
path: root/src/jake2
diff options
context:
space:
mode:
authorRene Stoeckel <[email protected]>2006-08-20 21:47:36 +0000
committerRene Stoeckel <[email protected]>2006-08-20 21:47:36 +0000
commitf33afade0c1201fb610eb6abc9a33cbeb553a43e (patch)
treee93f76587a9c5b2b2bba4b6a6afc54577e008511 /src/jake2
parent5a34a42ce231754c5e7a92fa9dd60ac510136274 (diff)
cosmetic
Diffstat (limited to 'src/jake2')
-rw-r--r--src/jake2/render/mmodel_t.java5
-rw-r--r--src/jake2/util/Vec3Cache.java3
2 files changed, 4 insertions, 4 deletions
diff --git a/src/jake2/render/mmodel_t.java b/src/jake2/render/mmodel_t.java
index 53ad985..ccaa4ad 100644
--- a/src/jake2/render/mmodel_t.java
+++ b/src/jake2/render/mmodel_t.java
@@ -19,13 +19,14 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
// Created on 20.11.2003 by RST.
-// $Id: mmodel_t.java,v 1.1 2004-07-07 19:59:35 hzi Exp $
+// $Id: mmodel_t.java,v 1.2 2006-08-20 21:47:36 salomo Exp $
package jake2.render;
public class mmodel_t
{
- public float[] mins = { 0, 0, 0 }, maxs = { 0, 0, 0 };
+ public float[] mins = { 0, 0, 0 };
+ public float[] maxs = { 0, 0, 0 };
public float[] origin = { 0, 0, 0 }; // for sounds or lights
public float radius;
public int headnode;
diff --git a/src/jake2/util/Vec3Cache.java b/src/jake2/util/Vec3Cache.java
index 1ec2d08..8e7ba60 100644
--- a/src/jake2/util/Vec3Cache.java
+++ b/src/jake2/util/Vec3Cache.java
@@ -2,7 +2,7 @@
* Vec3Cache.java
* Copyright (C) 2003
*
- * $Id: Vec3Cache.java,v 1.1 2005-01-16 15:16:44 cawe Exp $
+ * $Id: Vec3Cache.java,v 1.2 2006-08-20 21:46:40 salomo Exp $
*/
package jake2.util;
@@ -14,7 +14,6 @@ package jake2.util;
*/
public final class Vec3Cache {
- //private static Stack cache = new Stack();
private static final float[][] cache = new float[64][3];
private static int index = 0;
private static int max = 0;