summaryrefslogtreecommitdiff
path: root/src/lib/ecore/efl_interpolator_sinusoidal.eo
blob: 351dd0d21d48697f0e48c38d2f470f746e680520 (plain)
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.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;
   }
}