PolygonAndCircleContact constructor

PolygonAndCircleContact(
  1. Fixture fixtureA,
  2. Fixture fixtureB
)

Implementation

PolygonAndCircleContact(Fixture fixtureA, Fixture fixtureB)
    : assert(fixtureA.type == ShapeType.polygon),
      assert(fixtureB.type == ShapeType.circle),
      super(fixtureA, 0, fixtureB, 0);