diff options
author | Rene Stoeckel <[email protected]> | 2005-12-03 19:46:17 +0000 |
---|---|---|
committer | Rene Stoeckel <[email protected]> | 2005-12-03 19:46:17 +0000 |
commit | 35963a8e6bf1a3c60df69fdf890ed448c1ff3ad1 (patch) | |
tree | f4512fd5c2e660f2f8d0ec4c8a51629118c0b98a /src/jake2/game | |
parent | 03da10ecd8f15081200cdce1c98b5891a67f893f (diff) |
javadoc cleanup
Diffstat (limited to 'src/jake2/game')
-rw-r--r-- | src/jake2/game/cplane_t.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/jake2/game/cplane_t.java b/src/jake2/game/cplane_t.java index e356448..976465e 100644 --- a/src/jake2/game/cplane_t.java +++ b/src/jake2/game/cplane_t.java @@ -19,7 +19,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ // Created on 31.10.2003 by RST. -// $Id: cplane_t.java,v 1.4 2005-01-14 16:08:12 cawe Exp $ +// $Id: cplane_t.java,v 1.5 2005-12-03 19:44:05 salomo Exp $ package jake2.game; @@ -30,7 +30,9 @@ public class cplane_t { public float normal[] = new float[3]; public float dist; - public byte type; // for fast side tests + /** This is for fast side tests, 0=xplane, 1=yplane, 2=zplane and 3=arbitrary. */ + public byte type; + /** This represents signx + (signy<<1) + (signz << 1). */ public byte signbits; // signx + (signy<<1) + (signz<<1) public byte pad[] = { 0, 0 }; |