Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/algoscienceacademy/RustUI
/ ease_in
Method
ease_in
src/animation/mod.rs:55–58 ·
view source on GitHub ↗
(&self)
Source
from the content-addressed store, hash-verified
53
}
54
55
fn ease_in(&self) -> f32 {
56
let t = self.progress;
57
self.start_value + (self.end_value - self.start_value) * (t * t)
58
}
59
60
fn ease_out(&self) -> f32 {
61
let t = self.progress;
Callers
1
update
Method · 0.80
Calls
no outgoing calls
Tested by
no test coverage detected