Revision 29018 branches/v2_0_0_prep/libraries/libFMap_geometries/src/org/gvsig/fmap/geom/primitive/impl/Surface2D.java

View differences:

Surface2D.java
1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
1
/* gvSIG. Sistema de Informaci�n Geogr�fica de la Generalitat Valenciana
2 2
 *
3 3
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
4 4
 *
......
20 20
 *
21 21
 *  Generalitat Valenciana
22 22
 *   Conselleria d'Infraestructures i Transport
23
 *   Av. Blasco Ib??ez, 50
23
 *   Av. Blasco Ib��ez, 50
24 24
 *   46010 VALENCIA
25 25
 *   SPAIN
26 26
 *
......
184 184
	public Point getVertex(int index) {
185 185
		throw new UnsupportedOperationException("Method not implemented");
186 186
	}
187

  
188
	public void addColor(Point p) {
189
		throw new UnsupportedOperationException("Method not implemented");
190
		
191
	}
192

  
193
	public void addNormal(Point p) {
194
		throw new UnsupportedOperationException("Method not implemented");
195
		
196
	}
197

  
198
	public void addTextureCoord(int index, Point p) {
199
		throw new UnsupportedOperationException("Method not implemented");
200
		
201
	}
202

  
203
	public Point getColorAt(int index) {
204
		throw new UnsupportedOperationException("Method not implemented");
205
	
206
	}
207

  
208
	public AttributeBinding getColorBinding() {
209
		throw new UnsupportedOperationException("Method not implemented");
210
	
211
	}
212

  
213
	public Point getNormalAt(int index) {
214
		throw new UnsupportedOperationException("Method not implemented");
215
		
216
	}
217

  
218
	public AttributeBinding getNormalBinding() {
219
		throw new UnsupportedOperationException("Method not implemented");
220
		
221
	}
222

  
223
	public int getNumColors() {
224
		throw new UnsupportedOperationException("Method not implemented");
225
	
226
	}
227

  
228
	public int getNumNormals() {
229
		throw new UnsupportedOperationException("Method not implemented");
230
		
231
	}
232

  
233
	public int getNumTextureCoords() {
234
		throw new UnsupportedOperationException("Method not implemented");
235
		
236
	}
237

  
238
	public Point getTextureCoordAt(int index) {
239
		throw new UnsupportedOperationException("Method not implemented");
240
		
241
	}
242

  
243
	public void setColorAt(int index, Point p) {
244
		throw new UnsupportedOperationException("Method not implemented");
245
		
246
	}
247

  
248
	public void setColorBinding(AttributeBinding binding) {
249
		throw new UnsupportedOperationException("Method not implemented");
250
		
251
	}
252

  
253
	public void setNormalAt(int index, Point p) {
254
		throw new UnsupportedOperationException("Method not implemented");
255
		
256
	}
257

  
258
	public void setNormalBinding(AttributeBinding binding) {
259
		throw new UnsupportedOperationException("Method not implemented");
260
		
261
	}
262

  
263
	public void setTextureCoordAt(int index, Point p) {
264
		throw new UnsupportedOperationException("Method not implemented");
265
		
266
	}
187 267
}

Also available in: Unified diff