@awayfl/awayfl-player
Version:
Flash Player emulator for executing SWF files (published for FP versions 6 and up) in javascript
17 lines (15 loc) • 363 B
text/typescript
import { b2Vec2 } from '../Common/Math';
/**
* Returns data on the collision between a ray and a shape.
*/
export class b2RayCastOutput {
__fast__: boolean = true;
/**
* The normal at the point of collision
*/
public normal: b2Vec2 = new b2Vec2();
/**
* The fraction between p1 and p2 that the collision occurs at
*/
public fraction: number;
}