(fixtureA *B2Fixture, indexA int, fixtureB *B2Fixture, indexB int)
| 5 | } |
| 6 | |
| 7 | func B2CircleContact_Create(fixtureA *B2Fixture, indexA int, fixtureB *B2Fixture, indexB int) B2ContactInterface { |
| 8 | B2Assert(fixtureA.GetType() == B2Shape_Type.E_circle) |
| 9 | B2Assert(fixtureB.GetType() == B2Shape_Type.E_circle) |
| 10 | res := &B2CircleContact{ |
| 11 | B2Contact: MakeB2Contact(fixtureA, 0, fixtureB, 0), |
| 12 | } |
| 13 | |
| 14 | return res |
| 15 | } |
| 16 | |
| 17 | func B2CircleContact_Destroy(contact B2ContactInterface) { // should be a pointer |
| 18 | } |
nothing calls this directly
no test coverage detected