Skip to content

Commit

Permalink
Typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
n3vu0r committed Nov 30, 2024
1 parent dd37bc7 commit 95e4273
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ away from the screen’s center (e.g., the rotation accelerates towards the edge

* Time-free multi-touch gesture recognition for orbit, scale, slide, and focus (i.e., slide to
cursor/finger position) operations.
* Smoothing of movement implemented as fps-agnostic exponential easy-out.
* Smoothing of movement implemented as fps-agnostic exponential ease-out.
* Gimbal lock-free using quaternion instead of Euler angles.
* Gliding clamp (experimental): The movement of a camera can be restricted to user-defined
boundary conditions (e.g., to not orbit below the ground plane). When the movement is not
Expand Down
2 changes: 1 addition & 1 deletion src/camera.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pub struct TrackballCamera {
old_max: Point2<f32>,
/// Blend half-life from 0 (fast) to 1000 (slow) milliseconds. Default is `40.0`.
///
/// It is the time passed until halfway of fps-agnostic exponential easy-out.
/// It is the time passed until halfway of fps-agnostic exponential ease-out.
pub blend: f32,
/// Camera frame to reset to when [`TrackballInput::reset_key`] is pressed.
///
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
//!
//! * Time-free multi-touch gesture recognition for orbit, scale, slide, and focus (i.e., slide to
//! cursor/finger position) operations.
//! * Smoothing of movement implemented as fps-agnostic exponential easy-out.
//! * Smoothing of movement implemented as fps-agnostic exponential ease-out.
//! * Gimbal lock-free using quaternion instead of Euler angles.
//! * Gliding clamp (experimental): The movement of a camera can be restricted to user-defined
//! boundary conditions (e.g., to not orbit below the ground plane). When the movement is not
Expand Down

0 comments on commit 95e4273

Please sign in to comment.