示例#1
0
 public override double transform(double t)
 {
     D.assert(t >= 0.0 && t <= 1.0);
     return(Curves._bounce(t));
 }
示例#2
0
 public override float transform(float t)
 {
     D.assert(t >= 0.0 && t <= 1.0);
     return(1.0f - Curves._bounce(1.0f - t));
 }
示例#3
0
 public override float transform(float t)
 {
     D.assert(t >= 0.0f && t <= 1.0f);
     return(Curves._bounce(t));
 }
示例#4
0
 protected override float transformInternal(float t)
 {
     return(Curves._bounce(t));
 }