1 /* -------------------------------------------------------------------
2 GeoVISTA Center (Penn State, Dept. of Geography)
3 Java source file for the class Projection
4 Copyright (c), 2002, GeoVISTA Center
5 All Rights Reserved.
6 Original Author: Frank Hardisty
7 $Author: hardisty $
8 $Id: Projection.java,v 1.3 2003/05/05 17:34:40 hardisty Exp $
9 $Date: 2003/05/05 17:34:40 $
10 Reference: Document no:
11 ___ ___
12 ------------------------------------------------------------------- *
13 */
14
15
16 package edu.psu.geovista.app.map;
17 import java.awt.*;
18 import java.awt.geom.*;
19
20 /***
21 * Defines what projections must do.
22 */
23 public interface Projection {
24
25 /*
26 * this is in radians unless the projection specifies otherwise.
27 */
28 public Point2D.Double project (double lat, double longVal, Point2D.Double pt);
29 public Shape project(Shape input);
30
31
32 }
This page was automatically generated by Maven