Add U+035B

This commit is contained in:
be5invis 2021-06-28 20:03:33 -07:00
parent c0dbe3808c
commit 1205ffbb7e
2 changed files with 16 additions and 2 deletions

View file

@ -3,7 +3,7 @@ const { mix } = require("./utils");
class Box {
constructor(t, b, l, r) {
this.top = t;
this.bottom = b;
this.bottom = this.bot = b;
this.left = l;
this.right = r;
this.xMid = this.xMiddle = mix(l, r, 0.5);