| 87 | FILE* gCCDLog = NULL; |
| 88 | |
| 89 | static inline void openCCDLog() |
| 90 | { |
| 91 | if (gCCDLog) |
| 92 | { |
| 93 | fclose(gCCDLog); |
| 94 | gCCDLog = NULL; |
| 95 | } |
| 96 | gCCDLog = fopen("c:\\ccd.txt", "wt"); |
| 97 | fprintf(gCCDLog, ">>>>>>>>>>>>>>>>>>>>>>>>>>> CCD START FRAME <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<\n"); |
| 98 | } |
| 99 | |
| 100 | static inline void printSeparator( |
| 101 | const char* prefix, PxU32 pass, PxsRigidBody* atom0, PxGeometryType::Enum g0, PxsRigidBody* atom1, PxGeometryType::Enum g1) |