01: /**********************************************************
02: Copyright (C) 2001 Daniel Selman
03:
04: First distributed with the book "Java 3D Programming"
05: by Daniel Selman and published by Manning Publications.
06: http://manning.com/selman
07:
08: This program is free software; you can redistribute it and/or
09: modify it under the terms of the GNU General Public License
10: as published by the Free Software Foundation, version 2.
11:
12: This program is distributed in the hope that it will be useful,
13: but WITHOUT ANY WARRANTY; without even the implied warranty of
14: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15: GNU General Public License for more details.
16:
17: The license can be found on the WWW at:
18: http://www.fsf.org/copyleft/gpl.html
19:
20: Or by writing to:
21: Free Software Foundation, Inc.,
22: 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23:
24: Authors can be contacted at:
25: Daniel Selman: daniel@selman.org
26:
27: If you make changes you think others would like, please
28: contact one of the authors or someone at the
29: www.j3d.org web site.
30: **************************************************************/package com.db.utils.euler;
31:
32: class EulGetOrdInfo {
33: public int i;
34: public int j;
35: public int k;
36: public int h;
37: public int n;
38: public int s;
39: public int f;
40:
41: EulGetOrdInfo() {
42: }
43: }
|