| 994 | } |
| 995 | |
| 996 | void afxConstraintMgr::sample(F32 dt, U32 now, const Point3F* cam_pos) |
| 997 | { |
| 998 | U32 elapsed = now - mStartTime; |
| 999 | |
| 1000 | for (S32 i = 0; i < mConstraints_v.size(); i++) |
| 1001 | { |
| 1002 | afxConstraintList* list = mConstraints_v[i]; |
| 1003 | for (S32 j = 0; j < list->size(); j++) |
| 1004 | (*list)[j]->sample(dt, elapsed, cam_pos); |
| 1005 | } |
| 1006 | } |
| 1007 | |
| 1008 | S32 QSORT_CALLBACK cmp_cons_defs(const void* a, const void* b) |
| 1009 | { |
no test coverage detected