@@ -74,7 +74,7 @@ internal static B2Manifold b2PolygonAndCapsuleManifold(B2Shape shapeA, in B2Tran
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 ( shapeA . us . polygon , xfA , in shapeB . us . polygon , xfB ) ;
77+ return b2CollidePolygons ( shapeA . us . polygon , xfA , shapeB . us . polygon , xfB ) ;
7878 }
7979
8080 internal static B2Manifold b2SegmentAndCircleManifold ( B2Shape shapeA , in B2Transform xfA , B2Shape shapeB , in B2Transform xfB , ref B2SimplexCache cache )
@@ -92,7 +92,7 @@ internal static B2Manifold b2SegmentAndCapsuleManifold(B2Shape shapeA, in B2Tran
9292 internal static B2Manifold b2SegmentAndPolygonManifold ( B2Shape shapeA , in B2Transform xfA , B2Shape shapeB , in B2Transform xfB , ref B2SimplexCache cache )
9393 {
9494 B2_UNUSED ( cache ) ;
95- return b2CollideSegmentAndPolygon ( shapeA . us . segment , xfA , in shapeB . us . polygon , xfB ) ;
95+ return b2CollideSegmentAndPolygon ( shapeA . us . segment , xfA , shapeB . us . polygon , xfB ) ;
9696 }
9797
9898 internal static B2Manifold b2ChainSegmentAndCircleManifold ( B2Shape shapeA , in B2Transform xfA , B2Shape shapeB , in B2Transform xfB , ref B2SimplexCache cache )
@@ -108,7 +108,7 @@ internal static B2Manifold b2ChainSegmentAndCapsuleManifold(B2Shape shapeA, in B
108108
109109 internal static B2Manifold b2ChainSegmentAndPolygonManifold ( B2Shape shapeA , in B2Transform xfA , B2Shape shapeB , in B2Transform xfB , ref B2SimplexCache cache )
110110 {
111- return b2CollideChainSegmentAndPolygon ( shapeA . us . chainSegment , xfA , in shapeB . us . polygon , xfB , ref cache ) ;
111+ return b2CollideChainSegmentAndPolygon ( shapeA . us . chainSegment , xfA , shapeB . us . polygon , xfB , ref cache ) ;
112112 }
113113
114114 internal static void b2AddType ( b2ManifoldFcn fcn , B2ShapeType type1 , B2ShapeType type2 )
0 commit comments