⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 point2ddouble.java

📁 OpenJGraph是一个开源的Java库
💻 JAVA
字号:
package salvo.jesus.graph.java.awt.geom;import java.awt.geom.*;import java.io.*;/** * A <tt>java.awt.geom.Point2D.Double</tt> that is serializable. * There are no additional methods nor are there overriden methods in this class. * The only thing added is the <tt>Serializable</tt> interface. * * @author  Jesus M. Salvo Jr. */public class Point2DDouble extends Point2D.Double implements Serializable {    public Point2DDouble() {        super();    }    public Point2DDouble( double x, double y ) {        super( x, y );    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -