📄 pointxy.java
字号:
package com.croftsoft.core.math.geom;
/*********************************************************************
* A read-only accessor interface for double precision x,y coordinates. *
* @version * 2003-04-13 * * @since * 2003-03-20 * * @author
* <a href="http://www.croftsoft.com/">David Wallace Croft</a> *********************************************************************/
public interface PointXY //////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
{ public double getX ( ); public double getY ( ); // public double angleTo ( PointXY otherPointXY ); public double distanceXY ( PointXY otherPointXY ); public double distance ( double otherX, double otherY );
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -