Skip to content

Commit

Permalink
Group operations
Browse files Browse the repository at this point in the history
  • Loading branch information
tomcur committed Dec 13, 2024
1 parent 4af43fc commit 106be0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/arc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ fn incomplete_elliptic_integral_second_kind(accuracy: f64, phi: f64, m: f64) ->
let term2 = if sin == 0. || m == 0. {
0.
} else {
1. / 3. * m * sin3 * carlson_rd(accuracy * 3. / 2. / (m * sin3), cos2, 1. - m * sin2, 1.)
1. / 3. * m * sin3 * carlson_rd(accuracy * (3. / 2.) / (m * sin3), cos2, 1. - m * sin2, 1.)
};

term1 - term2
Expand Down

0 comments on commit 106be0c

Please sign in to comment.