menu
tremble package
documentation
vec2.dart
Vec2
lerp method
lerp method
dark_mode
light_mode
lerp
method
Vec2
lerp
(
Vec2
other
,
double
t
)
Implementation
Vec2 lerp(Vec2 other, double t) { return Vec2( x + (other.x - x) * t, y + (other.y - y) * t, ); }
tremble package
documentation
vec2
Vec2
lerp method
Vec2 class