UNPKG

@box2d/debug-draw

Version:

Debug drawing helper for @box2d

8 lines 664 B
import { b2Transform } from "../common/b2_math"; import { b2Manifold } from "./b2_collision"; import { b2CircleShape } from "./b2_circle_shape"; import { b2PolygonShape } from "./b2_polygon_shape"; import { b2Readonly } from "../common/b2_readonly"; export declare function b2CollideCircles(manifold: b2Manifold, circleA: b2CircleShape, xfA: b2Readonly<b2Transform>, circleB: b2CircleShape, xfB: b2Readonly<b2Transform>): void; export declare function b2CollidePolygonAndCircle(manifold: b2Manifold, polygonA: b2PolygonShape, xfA: b2Readonly<b2Transform>, circleB: b2CircleShape, xfB: b2Readonly<b2Transform>): void; //# sourceMappingURL=b2_collide_circle.d.ts.map