UNPKG

@awayfl/awayfl-player

Version:

Flash Player emulator for executing SWF files (published for FP versions 6 and up) in javascript

16 lines (15 loc) 399 B
import { b2Vec2 } from '../Common/Math'; /** * Returns data on the collision between a ray and a shape. */ var b2RayCastOutput = /** @class */ (function () { function b2RayCastOutput() { this.__fast__ = true; /** * The normal at the point of collision */ this.normal = new b2Vec2(); } return b2RayCastOutput; }()); export { b2RayCastOutput };