| 168 | //~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~// |
| 169 | |
| 170 | afxXM_RandomRot::afxXM_RandomRot(afxXM_RandomRotData* db, afxEffectWrapper* fxw) |
| 171 | : afxXM_Base(db, fxw) |
| 172 | { |
| 173 | Point3F rand_dir = MathUtils::randomDir(db->axis, db->theta_min, db->theta_max, db->phi_min, db->phi_max); |
| 174 | rand_ori = MathUtils::createOrientFromDir(rand_dir); |
| 175 | } |
| 176 | |
| 177 | void afxXM_RandomRot::updateParams(F32 dt, F32 elapsed, afxXM_Params& params) |
| 178 | { |
nothing calls this directly
no test coverage detected