javafx.geometry.Point2D can (and perhaps should considering speed and accuracy) use Math in several places:
* `distance` could use Math.hypot (and `magnitude` is `distance(0,0)`)
* `angle` could use Math.atan2
com.sun.javafx.geom.Point2D is a similar case.
* `distance` could use Math.hypot (and `magnitude` is `distance(0,0)`)
* `angle` could use Math.atan2
com.sun.javafx.geom.Point2D is a similar case.