Skip to content

Commit

Permalink
Forgot codegen
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-blackbird committed Oct 10, 2023
1 parent fa40ef7 commit 1b4131a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/f32/vec2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ impl Vec2 {
Self { x: cos, y: sin }
}

/// Returns the angle (in radians) of this vector.
/// Returns the angle (in radians) of this vector in the range `[-π, +π]`.
///
/// The input does not need to be a unit vector however it must be non-zero.
#[inline]
Expand Down
2 changes: 1 addition & 1 deletion src/f64/dvec2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ impl DVec2 {
Self { x: cos, y: sin }
}

/// Returns the angle (in radians) of this vector.
/// Returns the angle (in radians) of this vector in the range `[-π, +π]`.
///
/// The input does not need to be a unit vector however it must be non-zero.
#[inline]
Expand Down

0 comments on commit 1b4131a

Please sign in to comment.