I just played around with the Oracle JavaFX Sample 3D Graphics app I am wondering if it is possible to calculate the current mouse position relative to the 3d platfo
You can use the PickResult class from any MouseEvent, this is just the basic usage ..
...{ shape3D.setOnMouseEntered(e->{ PickResult pr = e.getPickResult(); System.out.println(pr.getIntersectedPoint()); }); }