More cleanup

This commit is contained in:
be5invis 2022-07-17 01:02:50 -07:00
parent 4a418cd473
commit 5d39aae19d
4 changed files with 109 additions and 99 deletions

View file

@ -1,6 +1,6 @@
import { mix } from "../utils.mjs";
class Box {
export class Box {
constructor(t, b, l, r) {
this.top = t;
this.bottom = this.bot = b;
@ -40,4 +40,3 @@ class Box {
return mix(this.bottom, this.top, t);
}
}
export { Box };