| 44 | #include <crtdbg.h> |
| 45 | |
| 46 | void CParticleSystem::RecomputeDirection() |
| 47 | { |
| 48 | EERIE_3D eVect; |
| 49 | eVect.x = p3ParticleDirection.x; |
| 50 | eVect.y = -p3ParticleDirection.y; |
| 51 | eVect.z = p3ParticleDirection.z; |
| 52 | GenerateMatrixUsingVector(&eMat, &eVect, 0); |
| 53 | } |
| 54 | //----------------------------------------------------------------------------- |
| 55 | CParticleSystem::CParticleSystem() |
| 56 | { |
no test coverage detected