Hello
I have a problem in with colissions in JavaFX.
First, i detect a collision between a line and a circle using the follow code:
if(line.getBoundsInParent().intersects(circle.getBoundsInParent())){
System.out.println("Collision!");
}
After this, i need catch the coordinate of collision, like the below figure:

Anyone knows how catch this coordinate?
[]'s