pub fn force_angle_radians(force_x: f64, force_y: f64) -> Option<f64>
Computes the planar angle of a force vector in radians.
This helper uses atan2(force_y, force_x).
atan2(force_y, force_x)