Release the array containing the particle data. */
| 291 | /** Release the array containing the particle data. |
| 292 | */ |
| 293 | FORCE_INLINE void release() |
| 294 | { |
| 295 | m_masses.clear(); |
| 296 | m_invMasses.clear(); |
| 297 | m_x0.clear(); |
| 298 | m_x.clear(); |
| 299 | m_v.clear(); |
| 300 | m_a.clear(); |
| 301 | m_oldX.clear(); |
| 302 | m_lastX.clear(); |
| 303 | } |
| 304 | |
| 305 | /** Release the array containing the particle data. |
| 306 | */ |
no test coverage detected