Package com.bbn.openmap.proj.coords

Source Code of com.bbn.openmap.proj.coords.AbstractGCT

//**********************************************************************
//
//<copyright>
//
//BBN Technologies
//10 Moulton Street
//Cambridge, MA 02138
//(617) 873-8000
//
//Copyright (C) BBNT Solutions LLC. All rights reserved.
//
//</copyright>
//**********************************************************************
//
//$Source:
///cvs/darwars/ambush/aar/src/com/bbn/ambush/mission/MissionHandler.java,v
//$
//$RCSfile: AbstractGCT.java,v $
//$Revision: 1.1.2.1 $
//$Date: 2008/01/25 17:44:27 $
//$Author: dietrick $
//
//**********************************************************************

package com.bbn.openmap.proj.coords;

import java.awt.geom.Point2D;

import com.bbn.openmap.LatLonPoint;
import com.bbn.openmap.OMComponent;

public abstract class AbstractGCT extends OMComponent implements GeoCoordTransformation {

    public Point2D forward(double lat, double lon) {
        return forward(lat, lon, new Point2D.Double());
    }

    public abstract Point2D forward(double lat, double lon, Point2D ret);

    public LatLonPoint inverse(double x, double y) {
        return inverse(x, y, new LatLonPoint());
    }

    public abstract LatLonPoint inverse(double x, double y, LatLonPoint ret);

}
TOP

Related Classes of com.bbn.openmap.proj.coords.AbstractGCT

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.