the-world-engine
Version:
three.js based, unity like game engine for browser
15 lines (14 loc) • 312 B
TypeScript
export class b2MassData {
mass: number;
center: b2Vec2;
I: number;
}
export const b2ShapeType: any;
export class b2Shape {
constructor(type: any, radius: any);
m_type: any;
m_radius: any;
Copy(other: any): b2Shape;
GetType(): any;
}
import { b2Vec2 } from "../common/b2_math.js";