ck
Class EasingSineOut

Object
  extended by common:Generic
      extended by ck:Easing
          extended by ck:EasingSineOut

class 
Easing:EasingSineOut



Ultra Fractal Source

Toggle UF Source Code Display

 class EasingSineOut (ck.ulb:Easing){
 protected:
        float func doEase(float t)
              float _t=t*(#PI/2)
              return sin(_t);
        endfunc
 default:
   title = "Sine Out"
 }
 


Constructor Summary
EasingSineOut()
           
 
Method Summary
protected  float doEase(float t)
           
 
Methods inherited from class ck:Easing
Ease
 
Methods inherited from class common:Generic
GetParent
 
Methods inherited from class Object
 

Constructor Detail

EasingSineOut

public EasingSineOut()
Method Detail

doEase

protected float doEase(float t)
Overrides:
doEase in class Easing