Skip to content

Commit 16d84f9

Browse files
committed
wip
1 parent 35a7eab commit 16d84f9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Box2D.NET/B2Contacts.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@ internal static B2Manifold b2PolygonAndCircleManifold(B2Shape shapeA, in B2Trans
6868
internal static B2Manifold b2PolygonAndCapsuleManifold(B2Shape shapeA, in B2Transform xfA, B2Shape shapeB, in B2Transform xfB, ref B2SimplexCache cache)
6969
{
7070
B2_UNUSED(cache);
71-
return b2CollidePolygonAndCapsule(in shapeA.us.polygon, xfA, shapeB.us.capsule, xfB);
71+
return b2CollidePolygonAndCapsule(shapeA.us.polygon, xfA, shapeB.us.capsule, xfB);
7272
}
7373

7474
internal static B2Manifold b2PolygonManifold(B2Shape shapeA, in B2Transform xfA, B2Shape shapeB, in B2Transform xfB, ref B2SimplexCache cache)
7575
{
7676
B2_UNUSED(cache);
77-
return b2CollidePolygons(in shapeA.us.polygon, xfA, in shapeB.us.polygon, xfB);
77+
return b2CollidePolygons(shapeA.us.polygon, xfA, in shapeB.us.polygon, xfB);
7878
}
7979

8080
internal static B2Manifold b2SegmentAndCircleManifold(B2Shape shapeA, in B2Transform xfA, B2Shape shapeB, in B2Transform xfB, ref B2SimplexCache cache)

0 commit comments

Comments
 (0)