📄 abstractgct.java
字号:
//**********************************************************************////<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);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -