| 1086 | } |
| 1087 | |
| 1088 | void CPHElement::applyForce(const Fvector& dir, float val) // aux |
| 1089 | { |
| 1090 | applyForce(dir.x * val, dir.y * val, dir.z * val); |
| 1091 | } |
| 1092 | void CPHElement::applyForce(float x, float y, float z) // called anywhere ph state influent |
| 1093 | { |
| 1094 | VERIFY(_valid(x) && _valid(y) && _valid(z)); |
nothing calls this directly
no test coverage detected