Statistics
| Revision:

root / org.gvsig.dgn / trunk / org.gvsig.dgn / org.gvsig.dgn.provider / src / main / java / org / gvsig / fmap / dal / store / dgn / lib / DGNElemTCB.java @ 6

History | View | Annotate | Download (2.29 KB)

1
/*
2
 * Created on 17-jul-2003
3
 *
4
 * Copyright (c) 2003
5
 * Francisco Jos? Pe?arrubia Mart?nez
6
 * IVER Tecnolog?as de la Informaci?n S.A.
7
 * Salamanca 50
8
 * 46005 Valencia (        SPAIN )
9
 * +34 963163400
10
 * mailto:fran@iver.es
11
 * http://www.iver.es
12
 */
13
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
14
 *
15
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
16
 *
17
 * This program is free software; you can redistribute it and/or
18
 * modify it under the terms of the GNU General Public License
19
 * as published by the Free Software Foundation; either version 2
20
 * of the License, or (at your option) any later version.
21
 *
22
 * This program is distributed in the hope that it will be useful,
23
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25
 * GNU General Public License for more details.
26
 *
27
 * You should have received a copy of the GNU General Public License
28
 * along with this program; if not, write to the Free Software
29
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
30
 *
31
 * For more information, contact:
32
 *
33
 *  Generalitat Valenciana
34
 *   Conselleria d'Infraestructures i Transport
35
 *   Av. Blasco Ib??ez, 50
36
 *   46010 VALENCIA
37
 *   SPAIN
38
 *
39
 *      +34 963862235
40
 *   gvsig@gva.es
41
 *      www.gvsig.gva.es
42
 *
43
 *    or
44
 *
45
 *   IVER T.I. S.A
46
 *   Salamanca 50
47
 *   46005 Valencia
48
 *   Spain
49
 *
50
 *   +34 963163400
51
 *   dac@iver.es
52
 */
53
package org.gvsig.fmap.dal.store.dgn.lib;
54

    
55
/**
56
 * Clase utilizada para guardar un elemento de tipo TCB.
57
 *
58
 * @author Vicente Caballero Navarro
59
 */
60
public class DGNElemTCB extends DGNElemCore {
61
        //DGNElemCore core=new DGNElemCore();
62
        public int dimension; /*!< Dimension (2 or 3) */
63
        public double origin_x; /*!< X origin of UOR space in master units(?)*/
64
        public double origin_y; /*!< Y origin of UOR space in master units(?)*/
65
        public double origin_z; /*!< Z origin of UOR space in master units(?)*/
66
        public double uor_per_subunit; /*!< UOR per subunit. */
67
        public char[] sub_units = new char[3];
68

    
69
        //3      /*!< User name for subunits (2 chars)*/
70
        public double subunits_per_master; /*!< Subunits per master unit. */
71
        public char[] master_units = new char[3];
72

    
73
        //3   /*!< User name for master units (2 chars)*/
74
        public DGNViewInfo[] views = new DGNViewInfo[8]; //8
75
}