phaser/todo/physics/Plane.ts

29 lines
514 B
TypeScript
Raw Normal View History

2013-06-26 04:44:56 +00:00
/// <reference path="../math/Vec2.ts" />
/// <reference path="../math/Vec2Utils.ts" />
2013-08-01 21:21:03 +00:00
/// <reference path="AdvancedPhysics.ts" />
/// <reference path="Body.ts" />
/**
* Phaser - Advanced Physics - Plane
*
* Based on the work Ju Hyung Lee started in JS PhyRus.
*/
2013-06-26 04:44:56 +00: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;
}
}