summaryrefslogtreecommitdiff
path: root/utils/point2d.ts
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2023-12-02 22:51:23 -0700
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2023-12-02 22:51:23 -0700
commit33c0bad9e3724fb939dc5fb069e14613d86fa4be (patch)
tree545cc810633cd5fe31bbbccc7d6c86d42a1ec54a /utils/point2d.ts
parentc97078c1dc2d245d829294ff700b2e2cbcbbf3fe (diff)
downloadaoc-33c0bad9e3724fb939dc5fb069e14613d86fa4be.tar.gz
aoc-33c0bad9e3724fb939dc5fb069e14613d86fa4be.zip
some extra utils
Diffstat (limited to 'utils/point2d.ts')
-rw-r--r--utils/point2d.ts22
1 files changed, 22 insertions, 0 deletions
diff --git a/utils/point2d.ts b/utils/point2d.ts
index 3d07569..45bee2e 100644
--- a/utils/point2d.ts
+++ b/utils/point2d.ts
@@ -7,3 +7,25 @@ export const l2Norm = (p1: Vec2, p2: Vec2) =>
Math.sqrt(Math.pow(p2.x - p1.x, 2) + Math.pow(p2.y - p1.y, 2));
export const isDiagAdj = (p1: Vec2, p2: Vec2) => l2Norm(p1, p2) <= Math.sqrt(2);
+
+export const neighbors = (p1: Vec2, max: Vec2) => {
+ const ns: Vec2[] = [];
+ const { x, y } = p1;
+ for (let dy = -1; dy <= 1; dy++) {
+ for (let dx = -1; dx <= 1; dx++) {
+ const [newX, newY] = [dx + x, dy + y];
+ if (
+ !(dy === dx && dy === 0) &&
+ newX >= 0 &&
+ newX < max.x &&
+ newY < max.y &&
+ newY >= 0
+ ) {
+ ns.push({ x: newX, y: newY });
+ }
+ }
+ }
+ return ns;
+};
+
+export const;