var Phaser;
(function (Phaser) {
///
///
///
///
/**
* Phaser - Advanced Physics - Plane
*
* Based on the work Ju Hyung Lee started in JS PhyRus.
*/
(function (Physics) {
var Plane = (function () {
function Plane(normal, d) {
this.normal = normal;
this.d = d;
}
return Plane;
})();
Physics.Plane = Plane;
})(Phaser.Physics || (Phaser.Physics = {}));
var Physics = Phaser.Physics;
})(Phaser || (Phaser = {}));