From 95e4273a5bcb255cffdb24b8f28a7dad4e6785b5 Mon Sep 17 00:00:00 2001 From: Rouven Spreckels Date: Sat, 30 Nov 2024 21:42:01 +0100 Subject: [PATCH] Typo. --- README.md | 2 +- src/camera.rs | 2 +- src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 22cf77036..923158547 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/src/camera.rs b/src/camera.rs index 314b356b5..1b13f8b85 100644 --- a/src/camera.rs +++ b/src/camera.rs @@ -28,7 +28,7 @@ pub struct TrackballCamera { old_max: Point2, /// 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. /// diff --git a/src/lib.rs b/src/lib.rs index a40bcffea..a9aca6f46 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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