(broadPhase *B2BroadPhase)
| 292 | } |
| 293 | |
| 294 | func (fix *B2Fixture) DestroyProxies(broadPhase *B2BroadPhase) { |
| 295 | // Destroy proxies in the broad-phase. |
| 296 | for i := 0; i < fix.M_proxyCount; i++ { |
| 297 | proxy := &fix.M_proxies[i] |
| 298 | broadPhase.DestroyProxy(proxy.ProxyId) |
| 299 | proxy.ProxyId = E_nullProxy |
| 300 | } |
| 301 | |
| 302 | fix.M_proxyCount = 0 |
| 303 | } |
| 304 | |
| 305 | func (fix *B2Fixture) Synchronize(broadPhase *B2BroadPhase, transform1 B2Transform, transform2 B2Transform) { |
| 306 |
no test coverage detected