summaryrefslogtreecommitdiff
path: root/src/lib/ecore/efl_interpolator_accelerate.eo
blob: dc087a5b67e0de7fda6a51916d5954412e7de17f (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_Accelerate (Efl.Interpolator)
{
   [[Efl accelerate interpolator class

     output = 1 - sin(Pi / 2 + input * Pi / 2);
   ]]
   data: Efl_Interpolator_Accelerate_Data;
   methods {
      @property factor {
         [[Factor property]]
         set {
         }
         get {
         }
         values {
            factor: double; [[Factor of the interpolation function.]]
         }
      }
   }
   implements {
      Efl.Object.constructor;
      Efl.Interpolator.interpolate;
   }
}