@awayfl/awayfl-player
Version:
Flash Player emulator for executing SWF files (published for FP versions 6 and up) in javascript
17 lines • 802 B
TypeScript
import { b2Shape } from '../../Collision/Shapes/b2Shape';
import { b2Contact } from './b2Contact';
import { b2Manifold } from '../../Collision/b2Manifold';
import { b2ContactListener } from '../b2ContactListener';
import { b2ContactPoint } from '../../Collision/b2ContactPoint';
export declare class b2PolygonContact extends b2Contact {
static Create(shape1: b2Shape, shape2: b2Shape, allocator: any): b2Contact;
static Destroy(contact: b2Contact, allocator: any): void;
constructor(shape1: b2Shape, shape2: b2Shape);
m0: b2Manifold;
static readonly s_evalCP: b2ContactPoint;
Evaluate(listener: b2ContactListener): void;
GetManifolds(): b2Manifold[];
m_manifolds: b2Manifold[];
m_manifold: b2Manifold;
}
//# sourceMappingURL=b2PolygonContact.d.ts.map