01: /*
02: * GeoTools - OpenSource mapping toolkit
03: * http://geotools.org
04: *
05: * (C) 2003-2006, Geotools Project Managment Committee (PMC)
06: * (C) 2002, Institut de Recherche pour le Développement
07: *
08: * This library is free software; you can redistribute it and/or
09: * modify it under the terms of the GNU Lesser General Public
10: * License as published by the Free Software Foundation; either
11: * version 2.1 of the License, or (at your option) any later version.
12: *
13: * This library is distributed in the hope that it will be useful,
14: * but WITHOUT ANY WARRANTY; without even the implied warranty of
15: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16: * Lesser General Public License for more details.
17: */
18: package org.geotools.referencing.operation.transform;
19:
20: /**
21: * @deprecated Moved to {@link org.geotools.referencing.operation.builder} package.
22: *
23: * @since 2.0
24: * @source $URL: http://svn.geotools.org/geotools/tags/2.4.1/modules/library/referencing/src/main/java/org/geotools/referencing/operation/transform/LocalizationGrid.java $
25: * @version $Id: LocalizationGrid.java 29101 2008-02-06 12:11:19Z desruisseaux $
26: * @author Remi Eve
27: * @author Martin Desruisseaux
28: * @author Alessio Fabiani
29: */
30: public class LocalizationGrid extends
31: org.geotools.referencing.operation.builder.LocalizationGrid {
32: /**
33: * Constructs an initially empty localization grid. All "real worlds"
34: * coordinates are initially set to {@code (NaN,NaN)}.
35: *
36: * @param width Number of grid's columns.
37: * @param height Number of grid's rows.
38: */
39: public LocalizationGrid(final int width, final int height) {
40: super(width, height);
41: }
42: }
|