(PaneBox startBox, PaneBox endBox, int actualArrowNumber, int totalArrowNumber)
| 264 | } |
| 265 | |
| 266 | public void arrangeEndpoints(PaneBox startBox, PaneBox endBox, int actualArrowNumber, int totalArrowNumber) { |
| 267 | this.arrowNumber = actualArrowNumber; |
| 268 | this.totalArrowNumber = totalArrowNumber; |
| 269 | this.setPoints(startBox, endBox); |
| 270 | drawArrow(); |
| 271 | } |
| 272 | |
| 273 | protected void calculateArrangement(PaneBox startBox, PaneBox endBox) { |
| 274 | double startBoxRadius = startBox.getWidth() <= startBox.getHeight() ? startBox.getWidth() / 2 : startBox.getHeight() / 2; |
no test coverage detected