Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/microsoft/SandDance
/ easing
Function
easing
packages/vega-deck.gl/src/easing.ts:6–9 ·
view source on GitHub ↗
(t: number)
Source
from the content-addressed store, hash-verified
4
import
{ easeExpInOut } from
'd3-ease'
;
5
6
export
function
easing(t: number) {
7
if
(t === 0 || t === 1)
return
t;
8
return
easeExpInOut(t);
9
}
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected