com.partnersoft.v3x.geometry.projections
Class NullProjection

java.lang.Object
  extended by com.partnersoft.v3x.geometry.projections.NullProjection
All Implemented Interfaces:
Projection

public class NullProjection
extends java.lang.Object
implements Projection


Constructor Summary
NullProjection()
           
 
Method Summary
 DoublePoint project(double longitude, double latitude)
          Project from latlong to xy.
 DoublePoint reverse(double x, double y)
          Reverse project from xy to latlong.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

NullProjection

public NullProjection()
Method Detail

project

public DoublePoint project(double longitude,
                           double latitude)
Description copied from interface: Projection
Project from latlong to xy.

Specified by:
project in interface Projection

reverse

public DoublePoint reverse(double x,
                           double y)
Description copied from interface: Projection
Reverse project from xy to latlong. Results are returned with point.x = long, point.y = lat.

Specified by:
reverse in interface Projection