EdgeAndPolygonContact constructor

EdgeAndPolygonContact(
  1. Fixture fixtureA,
  2. int indexA,
  3. Fixture fixtureB,
  4. int indexB,
)

Implementation

EdgeAndPolygonContact(
  super.fixtureA,
  super.indexA,
  super.fixtureB,
  super.indexB,
)   : assert(fixtureA.type == ShapeType.edge),
      assert(fixtureB.type == ShapeType.polygon);