Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.geometry / org.gvsig.fmap.geometry.impl / src / main / java / org / gvsig / fmap / geom / primitive / impl / Solid2DZ.java @ 40435

History | View | Annotate | Download (5.08 KB)

1 40435 jjdelcerro
package org.gvsig.fmap.geom.primitive.impl;
2
3
import java.awt.Rectangle;
4
import java.awt.geom.AffineTransform;
5
import java.awt.geom.PathIterator;
6
import java.awt.geom.Point2D;
7
import java.awt.geom.Rectangle2D;
8
import java.awt.image.BufferedImage;
9
10
import org.cresques.cts.ICoordTrans;
11
import org.gvsig.fmap.geom.handler.Handler;
12
import org.gvsig.fmap.geom.primitive.Appearance;
13
import org.gvsig.fmap.geom.primitive.Envelope;
14
import org.gvsig.fmap.geom.primitive.FShape;
15
import org.gvsig.fmap.geom.primitive.GeneralPathX;
16
import org.gvsig.fmap.geom.primitive.Solid;
17
import org.gvsig.fmap.geom.primitive.Surface;
18
import org.gvsig.fmap.geom.type.GeometryType;
19
20
/* gvSIG. Sistema de Informaci�n Geogr�fica de la Generalitat Valenciana
21
 *
22
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
23
 *
24
 * This program is free software; you can redistribute it and/or
25
 * modify it under the terms of the GNU General Public License
26
 * as published by the Free Software Foundation; either version 2
27
 * of the License, or (at your option) any later version.
28
 *
29
 * This program is distributed in the hope that it will be useful,
30
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
31
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
32
 * GNU General Public License for more details.
33
 *
34
 * You should have received a copy of the GNU General Public License
35
 * along with this program; if not, write to the Free Software
36
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
37
 *
38
 * For more information, contact:
39
 *
40
 *  Generalitat Valenciana
41
 *   Conselleria d'Infraestructures i Transport
42
 *   Av. Blasco Ib��ez, 50
43
 *   46010 VALENCIA
44
 *   SPAIN
45
 *
46
 *      +34 963862235
47
 *   gvsig@gva.es
48
 *      www.gvsig.gva.es
49
 *
50
 *    or
51
 *
52
 *   IVER T.I. S.A
53
 *   Salamanca 50
54
 *   46005 Valencia
55
 *   Spain
56
 *
57
 *   +34 963163400
58
 *   dac@iver.es
59
 */
60
/* CVS MESSAGES:
61
 *
62
 * $Id: FSolid.java,v 1.2 2008/03/25 08:47:41 cvs Exp $
63
 * $Log: FSolid.java,v $
64
 * Revision 1.2  2008/03/25 08:47:41  cvs
65
 * Visitors removed
66
 *
67
 * Revision 1.1  2008/03/12 08:46:20  cvs
68
 * *** empty log message ***
69
 *
70
 *
71
 */
72
/**
73
 * @author Jorge Piera Llodr� (jorge.piera@iver.es)
74
 */
75
public class Solid2DZ extends AbstractPrimitive implements Solid {
76
        private static final long serialVersionUID = 5702298296398677297L;
77
78
        /**
79
         * The constructor with the GeometryType like and argument
80
         * is used by the {@link GeometryType}{@link #create()}
81
         * to create the geometry
82
         * @param type
83
         * The geometry type
84
         */
85
        public Solid2DZ(GeometryType geometryType) {
86
                super(geometryType);
87
        }
88
89
        public FShape cloneFShape() {
90
                // TODO Auto-generated method stub
91
                return null;
92
        }
93
94
        public Handler[] getSelectHandlers() {
95
                // TODO Auto-generated method stub
96
                return null;
97
        }
98
99
        public int getShapeType() {
100
                // TODO Auto-generated method stub
101
                return 0;
102
        }
103
104
        public Handler[] getStretchingHandlers() {
105
                // TODO Auto-generated method stub
106
                return null;
107
        }
108
109
        public void reProject(ICoordTrans ct) {
110
                // TODO Auto-generated method stub
111
112
        }
113
114
        public void transform(AffineTransform at) {
115
                // TODO Auto-generated method stub
116
117
        }
118
119
        public boolean contains(Point2D arg0) {
120
                // TODO Auto-generated method stub
121
                return false;
122
        }
123
124
        public boolean contains(Rectangle2D arg0) {
125
                // TODO Auto-generated method stub
126
                return false;
127
        }
128
129
        public boolean contains(double arg0, double arg1) {
130
                // TODO Auto-generated method stub
131
                return false;
132
        }
133
134
        public boolean contains(double arg0, double arg1, double arg2, double arg3) {
135
                // TODO Auto-generated method stub
136
                return false;
137
        }
138
139
        public Rectangle getBounds() {
140
                // TODO Auto-generated method stub
141
                return null;
142
        }
143
144
        public Rectangle2D getBounds2D() {
145
                // TODO Auto-generated method stub
146
                return null;
147
        }
148
149
        public PathIterator getPathIterator(AffineTransform arg0) {
150
                // TODO Auto-generated method stub
151
                return null;
152
        }
153
154
        public PathIterator getPathIterator(AffineTransform arg0, double arg1) {
155
                // TODO Auto-generated method stub
156
                return null;
157
        }
158
159
        public boolean intersects(Rectangle2D arg0) {
160
                // TODO Auto-generated method stub
161
                return false;
162
        }
163
164
        public boolean intersects(double arg0, double arg1, double arg2, double arg3) {
165
                // TODO Auto-generated method stub
166
                return false;
167
        }
168
169
        /*
170
         * (non-Javadoc)
171
         *
172
         * @see org.gvsig.geometries.iso.GM_Object#coordinateDimension()
173
         */
174
        public int getDimension() {
175
                return 3;
176
        }
177
178
        public Envelope getEnvelope() {
179
                // TODO Auto-generated method stub
180
                return null;
181
        }
182
183
        public GeneralPathX getGeneralPath() {
184
                // TODO Auto-generated method stub
185
                return null;
186
        }
187
188
        public double[] getZs() {
189
                // TODO Auto-generated method stub
190
                return null;
191
        }
192
193
        public void addSurface(Surface surface) {
194
                // TODO Auto-generated method stub
195
196
        }
197
198
        public Appearance getAppearance() {
199
                // TODO Auto-generated method stub
200
                return null;
201
        }
202
203
        public int getNumSurfaces() {
204
                // TODO Auto-generated method stub
205
                return 0;
206
        }
207
208
        public Surface getSurfaceAt(int position) {
209
                // TODO Auto-generated method stub
210
                return null;
211
        }
212
213
        public void removeSurface(int position) {
214
                // TODO Auto-generated method stub
215
216
        }
217
218
        public void setAppearance(Appearance app) {
219
                // TODO Auto-generated method stub
220
221
        }
222
223
224
225
}