-
Notifications
You must be signed in to change notification settings - Fork 0
/
easing.v
100 lines (84 loc) · 2.19 KB
/
easing.v
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
// Copyright (c) 2020-2022 Leah Lundqvist. All rights reserved.
// Use of this source code is governed by a GPL license
// that can be found in the LICENSE file.
module ui
pub type EasingFunction = fn (arg_1 f64) f64
pub enum EasingType {
linear
ease_in_quad
ease_out_quad
ease_in_out_quad
ease_in_cubic
ease_out_cubic
ease_in_out_cubic
ease_in_quart
ease_out_quart
ease_in_out_quart
ease_in_quint
ease_out_quint
ease_in_out_quint
}
fn linear(x f64) f64 {
return x
}
fn ease_in_quad(x f64) f64 {
return x * x
}
fn ease_out_quad(x f64) f64 {
return x * (2.0 - x)
}
fn ease_in_out_quad(x f64) f64 {
return if x < .5 { 2.0 * x * x } else { -1.0 + (4.0 - 2.0 * x) * x }
}
fn ease_in_cubic(x f64) f64 {
return x * x * x
}
fn ease_out_cubic(x f64) f64 {
return (x - 1.0) * (x - 1.0) * (x - 1.0) + 1
}
fn ease_in_out_cubic(x f64) f64 {
return if x < .5 { 4.0 * x * x * x } else { (x - 1.0) * (2.0 * x - 2.0) * (2.0 * x - 2.0) + 1.0 }
}
fn ease_in_quart(x f64) f64 {
return x * x * x * x
}
fn ease_out_quart(x f64) f64 {
return 1.0 - (x - 1.0) * (x - 1.0) * (x - 1.0) * (x - 1.0)
}
fn ease_in_out_quart(x f64) f64 {
return if x < 0.5 {
8.0 * x * x * x * x
} else {
1.0 - 8.0 * (x - 1.0) * (x - 1.0) * (x - 1.0) * (x - 1.0)
}
}
fn ease_in_quint(x f64) f64 {
return x * x * x * x * x
}
fn ease_out_quint(x f64) f64 {
return 1.0 + (x - 1.0) * (x - 1.0) * (x - 1.0) * (x - 1.0) * (x - 1.0)
}
fn ease_in_out_quint(x f64) f64 {
return if x < 0.5 {
16.0 * x * x * x * x * x
} else {
1.0 + 16.0 * (x - 1.0) * (x - 1.0) * (x - 1.0) * (x - 1.0) * (x - 1.0)
}
}
pub fn easing(easingtype EasingType) EasingFunction {
match easingtype {
.linear { return linear }
.ease_in_quad { return ease_in_quad }
.ease_out_quad { return ease_out_quad }
.ease_in_out_quad { return ease_in_out_quad }
.ease_in_cubic { return ease_in_cubic }
.ease_out_cubic { return ease_out_cubic }
.ease_in_out_cubic { return ease_in_out_cubic }
.ease_in_quart { return ease_in_quart }
.ease_out_quart { return ease_out_quart }
.ease_in_out_quart { return ease_in_out_quart }
.ease_in_quint { return ease_in_quint }
.ease_out_quint { return ease_out_quint }
.ease_in_out_quint { return ease_in_out_quint }
}
}