summaryrefslogtreecommitdiff
path: root/src/lib/ecore/efl_interpolator_bounce.eo
blob: 87955a42783b210019282a4681509562fe1b9577 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class Efl.Interpolator.Bounce (Efl.Interpolator)
{
   [[Efl bounce interpolator class]]
   data: Efl_Interpolator_Bounce_Data;
   methods {
      @property factors {
         [[Factors property]]
         set {
         }
         get {
         }
         values {
            factor1: double; [[First factor of the interpolation function.]]
            factor2: double; [[Second factor of the interpolation function.]]
         }
      }
   }
   implements {
      Efl.Object.constructor;
      Efl.Interpolator.interpolate;
   }
}