Skip to content

Commit

Permalink
Removed blank lines
Browse files Browse the repository at this point in the history
  • Loading branch information
VanSHOE committed Dec 22, 2021
1 parent 89d97d9 commit b2fdb9d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/circle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,6 @@ mod tests {

#[inline]
fn point_on_circle(center: Point, radius: f64, angle: f64) -> Point {

let (angle_sin, angle_cos) = angle.sin_cos();
center
+ Vec2 {
Expand Down
1 change: 0 additions & 1 deletion src/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ pub fn solve_cubic(c0: f64, c1: f64, c2: f64, c3: f64) -> ArrayVec<f64, 3> {
let rho = r.hypot(sq);
let th = sq.atan2(r) * (1.0 / 3.0);
let cbrho = rho.cbrt();

let (th_sin, th_cos) = th.sin_cos();
let c = th_cos;
let ss3 = th_sin * 3.0f64.sqrt();
Expand Down

0 comments on commit b2fdb9d

Please sign in to comment.