phaser/Phaser/physics/Plane.ts

29 lines
506 B
TypeScript
Raw Normal View History

2013-06-26 05:44:56 +01:00
/// <reference path="../math/Vec2.ts" />
/// <reference path="../math/Vec2Utils.ts" />
/// <reference path="Manager.ts" />
/// <reference path="Body.ts" />
/**
* Phaser - Advanced Physics - Plane
*
* Based on the work Ju Hyung Lee started in JS PhyRus.
*/
2013-06-26 05:44:56 +01:00
module Phaser.Physics {
export class Plane {
constructor(normal: Phaser.Vec2, d: number) {
this.normal = normal;
this.d = d;
}
public normal: Phaser.Vec2;
public d: number;
}
}