pub fn inverse_kinematics_with_params(
link_lengths: &[f64],
initial_joint_angles: &[f64],
goal_pos: &[f64; 2],
max_iterations: usize,
goal_threshold: f64,
) -> Option<Vec<f64>>Expand description
Solves inverse kinematics with configurable iteration limit and threshold.