Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
erincatto committed Nov 20, 2023
1 parent 07a3f20 commit 48f533a
Show file tree
Hide file tree
Showing 3 changed files with 400 additions and 50 deletions.
4 changes: 4 additions & 0 deletions include/box2d/manifold.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,10 @@ b2Manifold b2CollideSegmentAndPolygon(const b2Segment* segmentA, b2Transform xfA
b2Manifold b2CollideSmoothSegmentAndCircle(const b2SmoothSegment* smoothSegmentA, b2Transform xfA, const b2Circle* circleB,
b2Transform xfB);

/// Compute the collision manifold between an segment and a capsule.
b2Manifold b2CollideSmoothSegmentAndCapsule(const b2SmoothSegment* segmentA, b2Transform xfA, const b2Capsule* capsuleB, b2Transform xfB,
b2DistanceCache* cache);

/// Compute the collision manifold between a smooth segment and a rounded polygon.
b2Manifold b2CollideSmoothSegmentAndPolygon(const b2SmoothSegment* segmentA, b2Transform xfA, const b2Polygon* polygonB,
b2Transform xfB, b2DistanceCache* cache);
Expand Down
Loading

0 comments on commit 48f533a

Please sign in to comment.