| 35 | ~Particle(); |
| 36 | |
| 37 | void moveTo(const VDouble &coord, double subdt) { |
| 38 | this->coord = coord; |
| 39 | dt -= subdt; |
| 40 | if (dt < 0) dt = 0.0; |
| 41 | } |
| 42 | |
| 43 | void move(const VDouble &disp, double subdt) { |
| 44 | this->coord += disp; |
no outgoing calls
no test coverage detected