(Point3D startPoint, Point3D endPoint)
| 219 | } |
| 220 | |
| 221 | public void setPoints(Point3D startPoint, Point3D endPoint) { |
| 222 | setStartPoint(startPoint); |
| 223 | setEndPoint(endPoint); |
| 224 | this.startEndDistance = this.startPoint.distance(this.endPoint); |
| 225 | } |
| 226 | |
| 227 | public void setPoints(PaneBox startBox, Point3D endPoint) { |
| 228 | setStartPoint(startBox.getCenterPoint()); |
no test coverage detected