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

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