Revision 34899 branches/v2_0_0_prep/libraries/libFMap_geometries/src/org/gvsig/fmap/geom/Geometry.java

View differences:

Geometry.java
182 182
		public final static int GEOM2D = 0;
183 183

  
184 184
		/**
185
		 * Geometries with two dimensions and with a value for the elevation.
186
		 */
187
		public final static int GEOM2DZ = 1;
188

  
189
		/**
190 185
		 * Geometries with three dimensions.
191 186
		 */
192
		public final static int GEOM3D = 2;
187
		public final static int GEOM3D = 1;
193 188

  
194 189
		/**
195 190
		 * Geometries with two dimensions and with the M coordinate.
196 191
		 */
197
		public final static int GEOM2DM = 3;
192
		public final static int GEOM2DM = 2;
198 193

  
199 194
		/**
200 195
		 * Geometries with three dimensions and with the M coordinate.
201 196
		 */
202
		public final static int GEOM3DM = 4;
197
		public final static int GEOM3DM = 3;
203 198

  
204 199
		/**
205 200
		 * The subtype us unknown.
206 201
		 */
207
		public final static int UNKNOWN = 5;
202
		public final static int UNKNOWN = 4;
208 203
	}
209 204

  
210 205
	/**

Also available in: Unified diff