Skip to content

Commit

Permalink
Digg into the deployment bug (test)
Browse files Browse the repository at this point in the history
  • Loading branch information
nclslbrn committed May 6, 2024
1 parent 7e82630 commit bf141fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions demo/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ console.log(
),
);
*/

/*
const rotateGlyph = (g: Glyph) =>
g.map((l: Line) => l.map((p: Vec) => [1 - p[0], 1 - p[1]]));
const upscaleGlyph = (g: Glyph) =>
Expand All @@ -52,7 +52,7 @@ const mirrorYGlyph = (g: Glyph) =>
// font["ɜ"] = mirrorYGlyph(font["ɛ"])
console.log(JSON.stringify(scaleGlyph(font["L"])));

*/
for (let l = 0; l < lowercase.length; l++) {
if (font[lowercase[l]] === undefined) {
console.log(`%c ${lowercase[l]}`, "font-size: 3em");
Expand All @@ -76,7 +76,7 @@ const update = () => {
let height = window.innerHeight;
const userInput = input.value !== textAtLaunch ? input.value : glyphKeys,
text = userInput.split("") as string[],
fontScale = 0.2, //parseFloat(inputSize.value),
fontScale = parseFloat(inputSize.value),
width = window.innerWidth - 40,
baseSize = Math.max(
16,
Expand Down

0 comments on commit bf141fe

Please sign in to comment.