bestParticle() {
        let best = this.particles[0];

        this.particles.forEach((p) => {
            if (p.weight > best.weight) {