diff options
author | Holger Zickner <[email protected]> | 2004-07-08 20:24:48 +0000 |
---|---|---|
committer | Holger Zickner <[email protected]> | 2004-07-08 20:24:48 +0000 |
commit | 252832999fa43bce63ca4b643fab5d9dd51fccc4 (patch) | |
tree | 98570c65819059d14f0809ae964aa1c6c93684a0 /src/jake2/game/cplane_t.java | |
parent | 4f13ea26c4f47e54e66926f0700cf631e7bb3352 (diff) |
import of Jake2 version cebit
Diffstat (limited to 'src/jake2/game/cplane_t.java')
-rw-r--r-- | src/jake2/game/cplane_t.java | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/src/jake2/game/cplane_t.java b/src/jake2/game/cplane_t.java index 2eb29e9..4465a76 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.2 2004-07-08 15:58:44 hzi Exp $ +// $Id: cplane_t.java,v 1.3 2004-07-08 20:24:29 hzi Exp $ package jake2.game; @@ -34,17 +34,18 @@ public class cplane_t public byte signbits; // signx + (signy<<1) + (signz<<1) public byte pad[] = { 0, 0 }; - public cplane_t getClone() - { - cplane_t out = new cplane_t(); - out.normal = Lib.clone(normal); - out.dist = dist; - out.type = type; - out.signbits = signbits; - out.pad = Lib.clone(pad); - - return out; - } +// public cplane_t getClone() +// { +// cplane_t out = new cplane_t(); +// Math3D.set(out.normal, normal); +// out.dist = dist; +// out.type = type; +// out.signbits = signbits; +// out.pad[0] = pad[0]; +// out.pad[1] = pad[1]; +// +// return out; +// } public void set(cplane_t c) { |