| 4524 | } |
| 4525 | |
| 4526 | void b2ParticleSystem::QueryShapeAABB(b2QueryCallback* callback, |
| 4527 | const b2Shape& shape, |
| 4528 | const b2Transform& xf) const |
| 4529 | { |
| 4530 | b2AABB aabb; |
| 4531 | shape.ComputeAABB(&aabb, xf, 0); |
| 4532 | QueryAABB(callback, aabb); |
| 4533 | } |
| 4534 | |
| 4535 | void b2ParticleSystem::RayCast(b2RayCastCallback* callback, |
| 4536 | const b2Vec2& point1, |
nothing calls this directly
no test coverage detected