From 30ddca402ac0298543c62de47d9b88b37b77995d Mon Sep 17 00:00:00 2001 From: hasnainroopawalla Date: Sat, 2 Sep 2023 21:43:39 +0200 Subject: [PATCH] Remove comment --- src/aco/quadtree.ts | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/aco/quadtree.ts b/src/aco/quadtree.ts index a63258d..221a3e7 100644 --- a/src/aco/quadtree.ts +++ b/src/aco/quadtree.ts @@ -238,16 +238,6 @@ export class Quadtree { this.divided = true; } - // if (this.points.length < this.capacity) { - // this.points.push(point); - // return true; - // } - - // if (!this.divided) { - // this.subdivide(); - // this.divided = true; - // } - return ( this.topLeft.insert(point) || this.bottomLeft.insert(point) ||