Statistics
| Revision:

svn-gvsig-desktop / tags / Root_CqCMSGisPlanet / libraries / libCq CMS for java.old / src / org / cresques / geo / PointFactory.java @ 1933

History | View | Annotate | Download (167 Bytes)

1
package org.cresques.geo;
2

    
3
public class PointFactory {
4
        public static UtmPoint newUtmPoint(UtmZone zona, double x, double y) {
5
                return new UtmPoint(zona, x, y);
6
        }
7
}