📄 chopellipseconnector.java
字号:
/*
* @(#)ChopEllipseConnector.java 5.2
*
*/
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -