(Point3D startPoint, Point3D endPoint, RelationType type)
| 60 | private boolean isSelected = false; |
| 61 | |
| 62 | public Arrow(Point3D startPoint, Point3D endPoint, RelationType type) { |
| 63 | setPoints(startPoint, endPoint); |
| 64 | this.type = type; |
| 65 | buildArrow(); |
| 66 | drawArrow(); |
| 67 | } |
| 68 | |
| 69 | public Arrow(PaneBox startBox, Point3D endPoint, RelationType type) { |
| 70 | setPoints(startBox, endPoint); |
nothing calls this directly
no test coverage detected