Function torque_at_angle_degrees
pub fn torque_at_angle_degrees(
force: f64,
lever_arm: f64,
angle_degrees: f64,
) -> Option<f64>Expand description
Computes torque when the applied force meets the lever arm at an angle in degrees.
This helper converts degrees to radians internally and delegates to torque_at_angle.