Skip to content

Instantly share code, notes, and snippets.

View eonarheim's full-sized avatar
🕹️
Fixin' bugs

Erik Onarheim eonarheim

🕹️
Fixin' bugs
View GitHub Profile
@eonarheim
eonarheim / minkowski.ts
Created January 1, 2025 19:11 — forked from kfalicov/minkowski.ts
A messy first-attempt approach at creating swept/shapecast AABB colliders in excalibur
import {
vec,
Vector,
} from 'excalibur';
/**
* sweeps a polygon p along another polygon q by using minkowski to sum the two polygons.
* @param p the first polygon
* @param q the second polygon
*/