(Point3D internalPoint, PaneBox box, Point3D externalPoint)
| 343 | } |
| 344 | |
| 345 | private Point2D lineBoxIntersection(Point3D internalPoint, PaneBox box, Point3D externalPoint) { |
| 346 | return lineRectangleIntersection(internalPoint, externalPoint, box.getCenterPoint(), box.getWidth(), box.getHeight()); |
| 347 | } |
| 348 | |
| 349 | private Point2D lineRectangleIntersection(Point3D internalPoint, Point3D externalPoint, Point3D centerPoint, double width, double height) { |
| 350 | double halfWidth = width / 2; |
no test coverage detected