| 453 | //---------------------------------------------------------------------------- |
| 454 | |
| 455 | void Convex::addToWorkingList(Convex* ptr) |
| 456 | { |
| 457 | CollisionWorkingList* cl = CollisionWorkingList::alloc(); |
| 458 | cl->wLinkAfter(&mWorking); |
| 459 | cl->rLinkAfter(&ptr->mReference); |
| 460 | cl->mConvex = ptr; |
| 461 | }; |
| 462 | |
| 463 | |
| 464 | //---------------------------------------------------------------------------- |
no test coverage detected