pub struct Spring { /* private fields */ }Expand description
A physical spring policy for spring.
A spring is the counterpart to Transition for values that can be
retargeted while they are still moving. A duration-based transition restarts
its easing from the value sampled at that instant, which is continuous in
position but not in velocity. A spring carries velocity across the retarget,
so a value reversed mid-flight decelerates and turns around instead of
snapping to a new curve’s initial speed.
Implementations§
Source§impl Spring
impl Spring
Sourcepub const fn new(response: Duration) -> Self
pub const fn new(response: Duration) -> Self
Builds a spring that reaches its target in about response without
overshooting it.
response is not a duration in the sense Transition::new means one.
A spring has no end to schedule: this is the period one full oscillation
would take without damping, which is the scale the motion is felt at
rather than the moment it stops. The remaining fraction of a percent
keeps settling past it, until it is within the tolerance
Self::with_epsilon sets.
A zero response adopts the target on the spot, as a zero duration does
for a transition. Say that with Self::with_travel where it is what
you mean; a zero here is the degenerate case, defined so an infinitely
stiff spring resolves rather than dividing by its own period.
Sourcepub const fn with_damping(self, ratio: f32) -> Self
pub const fn with_damping(self, ratio: f32) -> Self
Sets the damping ratio, which is 1.0 — no overshoot — by default.
Below 1.0 the spring passes its target and comes back; above 1.0 it
approaches slowly. Overshoot suits a value with room to pass its target
and nothing to collide with. A height, an opacity, or anything bounded by
the geometry around it should stay at the default.
This is $\zeta$, not GPUI’s SpringConfig::damping, which is the
coefficient $c = 2 \zeta \omega_0$.
§Panics
Panics when ratio is negative or non-finite. Use
Self::try_with_damping when the value is not a trusted constant.
Sourcepub const fn try_with_damping(self, ratio: f32) -> Result<Self, SpringError>
pub const fn try_with_damping(self, ratio: f32) -> Result<Self, SpringError>
Checked form of Self::with_damping.
Sourcepub const fn with_travel(self, travel: bool) -> Self
pub const fn with_travel(self, travel: bool) -> Self
Sets whether the spring travels to its target or adopts it on the spot.
A value the pointer is already moving — a panel being dragged by its resize handle — must not lag behind the pointer, so the spring stops travelling for as long as the drag lasts. Retained state stays pinned to the target meanwhile, so travel resumes from the value the drag released rather than from wherever the spring was when it began.
This says at the call that the motion is suspended, and it says it without disturbing the response, damping or tolerance the spring is configured with — which a policy swapped out for the length of the drag would have to restate or discard.
Sourcepub const fn with_epsilon(self, epsilon: f32) -> Self
pub const fn with_epsilon(self, epsilon: f32) -> Self
Sets the settling tolerance, expressed in the target’s own units.
The default suits targets that move within a normalized 0..1 range. A
spring over pixels settles perceptibly sooner with a coarser tolerance,
which also ends the animation frames that the remaining sub-pixel motion
would otherwise request.
§Panics
Panics when epsilon is zero, negative, or non-finite. Use
Self::try_with_epsilon when the value is not a trusted constant.
Sourcepub const fn try_with_epsilon(self, epsilon: f32) -> Result<Self, SpringError>
pub const fn try_with_epsilon(self, epsilon: f32) -> Result<Self, SpringError>
Checked form of Self::with_epsilon.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Spring
impl RefUnwindSafe for Spring
impl Send for Spring
impl Sync for Spring
impl Unpin for Spring
impl UnsafeUnpin for Spring
impl UnwindSafe for Spring
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more