| 618 | particles.clear(); |
| 619 | } |
| 620 | bool isEmpty() const |
| 621 | { |
| 622 | if (!clusters.empty()) { |
| 623 | return false; |
| 624 | } |
| 625 | if (!particles.empty()) { |
| 626 | return false; |
| 627 | } |
| 628 | return true; |
| 629 | } |
| 630 | void setCenter(RealVector2D const& center); |
| 631 | |
| 632 | RealVector2D calcCenter() const; |
nothing calls this directly
no outgoing calls
no test coverage detected