pub fn solve_kepler_with_params(
mean_anomaly: Radians,
e: Eccentricity,
tol: f64,
max_iter: u32,
) -> Result<KeplerSolution, String>Expand description
Solve Kepler’s equation with custom tolerance and iteration limit.
pub fn solve_kepler_with_params(
mean_anomaly: Radians,
e: Eccentricity,
tol: f64,
max_iter: u32,
) -> Result<KeplerSolution, String>Solve Kepler’s equation with custom tolerance and iteration limit.