| 77 | } |
| 78 | |
| 79 | void RadialImpulseEvent::_impulseCallback( SceneObject *obj, void *key ) |
| 80 | { |
| 81 | ImpulseInfo *info = (ImpulseInfo*)key; |
| 82 | obj->applyRadialImpulse( info->pos, info->radius, info->magnitude ); |
| 83 | } |
| 84 | |
| 85 | void RadialImpulseEvent::impulse( SceneContainer *con, const Point3F &position, F32 radius, F32 magnitude ) |
| 86 | { |
nothing calls this directly
no test coverage detected