Box2DX.Dynamics.PolyAndEdgeContact.CollidePolyAndEdgeContact C# (CSharp) Метод

CollidePolyAndEdgeContact() приватный статический Метод

private static CollidePolyAndEdgeContact ( Manifold &manifold, Shape shape1, Box2DX.Common.Transform xf1, Shape shape2, Box2DX.Common.Transform xf2 ) : void
manifold Box2DX.Collision.Manifold
shape1 Box2DX.Collision.Shape
xf1 Box2DX.Common.Transform
shape2 Box2DX.Collision.Shape
xf2 Box2DX.Common.Transform
Результат void
        private static void CollidePolyAndEdgeContact(ref Manifold manifold, Shape shape1, Transform xf1, Shape shape2, Transform xf2)
        {
            Collision.Collision.CollidePolyAndEdge(ref manifold, (PolygonShape)shape1, xf1, (EdgeShape)shape2, xf2);
        }