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

PolyAndCircleContact() публичный Метод

public PolyAndCircleContact ( Shape s1, Shape s2 ) : System
s1 Box2DX.Collision.Shape
s2 Box2DX.Collision.Shape
Результат System
        public PolyAndCircleContact(Shape s1, Shape s2)
            : base(s1, s2)
        {
            Box2DXDebug.Assert(_shape1.GetType() == ShapeType.PolygonShape);
            Box2DXDebug.Assert(_shape2.GetType() == ShapeType.CircleShape);
            _manifold.PointCount = 0;
        }