Box2D.Collision.Collision.CollideEdgeAndPolygon C# (CSharp) Method

CollideEdgeAndPolygon() public method

public CollideEdgeAndPolygon ( Manifold manifold, EdgeShape edgeA, Transform xfA, PolygonShape polygonB, Transform xfB ) : void
manifold Manifold
edgeA Box2D.Collision.Shapes.EdgeShape
xfA Box2D.Common.Transform
polygonB Box2D.Collision.Shapes.PolygonShape
xfB Box2D.Common.Transform
return void
        public void CollideEdgeAndPolygon(Manifold manifold, EdgeShape edgeA, Transform xfA, PolygonShape polygonB, Transform xfB)
        {
            collider.Collide(manifold, edgeA, xfA, polygonB, xfB);
        }