WIP fixing ASCII renderer

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>
This commit is contained in:
2026-03-16 15:42:48 +01:00
parent fdfe5d336f
commit dd9bd5897e
7 changed files with 62 additions and 45 deletions

View File

@@ -55,7 +55,11 @@ class AsciiRasterizer extends Rasterizer {
// Terminal characters are usually twice as tall as they are wide.
// We override the base multiplier to squish sprites horizontally.
@override
double get aspectMultiplier => 0.6;
double get aspectMultiplier => 2.0;
// Squish the entire 3D projection vertically by 50% to counteract tall terminal fonts
@override
double get verticalStretch => 1.8;
// Intercept the base render call to initialize our text grid
@override