UNPKG
@nepwork/dashboards
Version:
latest (0.0.2)
0.0.2
Dashboards for emergencies and monitoring
github.com/nepwork/admin-ui
nepwork/admin-ui
@nepwork/dashboards
/
hgraph
/
node_modules
/
d3-ease
/
src
/
circle.js
12 lines
(9 loc)
•
261 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
function
circleIn
(
t
) {
return
1
-
Math
.
sqrt
(
1
- t * t); }
export
function
circleOut
(
t
) {
return
Math
.
sqrt
(
1
- --t * t); }
export
function
circleInOut
(
t
) {
return
((t *=
2
) <=
1
?
1
-
Math
.
sqrt
(
1
- t * t) :
Math
.
sqrt
(
1
- (t -=
2
) * t) +
1
) /
2
; }