phaser/Phaser/system/easing/Sinusoidal.ts

34 lines
456 B
TypeScript
Raw Normal View History

2013-04-18 13:16:18 +00:00
/// <reference path="../../Game.ts" />
/**
2013-04-18 15:49:08 +00:00
* Phaser - Easing - Sinusoidal
*
* For use with Phaser.Tween
*/
2013-04-18 13:16:18 +00:00
module Phaser.Easing {
export class Sinusoidal {
public static In(k) {
return 1 - Math.cos(k * Math.PI / 2);
}
public static Out(k) {
return Math.sin(k * Math.PI / 2);
}
public static InOut(k) {
return 0.5 * (1 - Math.cos(Math.PI * k));
}
}
}