Skip to content

Commit

Permalink
add NormalIntensity
Browse files Browse the repository at this point in the history
  • Loading branch information
ahaoboy committed Oct 18, 2024
1 parent fe82504 commit ece3f02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ansi2/src/svg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ class_str ,
cur_x = 0;
}

let svg_w = (fn_w) * (canvas.w);
let svg_h = (fn_h) * (canvas.h);
let svg_w = fn_w * canvas.w;
let svg_h = fn_h * canvas.h;

let color256_str: String = color256.into_iter().collect();

Expand Down

0 comments on commit ece3f02

Please sign in to comment.