blob: 39718525c7e6e0f8d886fc4c6a504b2353dbc682 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
class Efl.Interpolator_Sinusoidal (Efl.Object, Efl.Interpolator)
{
[[Efl sinusoidal interpolator class
output = (1 - cos(input * Pi)) / 2;
]]
data: Efl_Interpolator_Sinusoidal_Data;
methods {
@property factor {
[[Factor property]]
set {
}
get {
}
values {
factor: double; [[Factor of the interpolation function.]]
}
}
}
implements {
Efl.Object.constructor;
Efl.Interpolator.interpolate;
}
}
|