From 2c9567e42d2e96de3479f95125f0fff04ff52c2d Mon Sep 17 00:00:00 2001 From: sanine Date: Wed, 25 May 2022 14:17:04 -0500 Subject: begin refactor to use quadtree --- modules/KDTree.js | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 modules/KDTree.js (limited to 'modules/KDTree.js') diff --git a/modules/KDTree.js b/modules/KDTree.js deleted file mode 100644 index d9133d1..0000000 --- a/modules/KDTree.js +++ /dev/null @@ -1,33 +0,0 @@ -'use strict'; - -class NodeType { - static Leaf = new NodeType('Leaf'); - static Branch = new NodeType('Branch'); - - constructor(name) { this.name = name; } - toString() { return `NodeType.${this.name}`; } -} - - -class LeafNode { - constructor(point) { - this.type = NodeType.Leaf; - this.point = point; - } -} -class BranchNode { -} - - -class KDTree { - constructor() { - this.root = null; - } - - insert(point) { - this.root = new LeafNode(point); - } -} - -export { KDTree, NodeType, LeafNode, BranchNode }; -export default KDTree; -- cgit v1.2.1