chopellipseconnector.java

来自「JHotDraw学习过程中对数组的测试程序haha 学习过程中对数组的测试程序」· Java 代码 · 共 39 行

JAVA
39
字号
/* * @(#)ChopEllipseConnector.java 5.1 * */package CH.ifa.draw.figures;import java.awt.*;import CH.ifa.draw.framework.*;import CH.ifa.draw.standard.*;import CH.ifa.draw.util.Geom;/** * A ChopEllipseConnector locates a connection point by * chopping the connection at the ellipse defined by the * figure's display box. */public class ChopEllipseConnector extends ChopBoxConnector {    /*     * Serialization support.     */    private static final long serialVersionUID = -3165091511154766610L;    public ChopEllipseConnector() {    }    public ChopEllipseConnector(Figure owner) {        super(owner);    }    protected Point chop(Figure target, Point from) {        Rectangle r = target.displayBox();        double angle = Geom.pointToAngle(r, from);	    return Geom.ovalAngleToPoint(r, angle);    }}

⌨️ 快捷键说明

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