Skip to content

Commit

Permalink
fix: remove debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Overcash - c0o02bc authored and Chris Overcash - c0o02bc committed Feb 7, 2024
1 parent a516cc3 commit 56ee174
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/convert/svg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,6 @@ impl SvgBuilder {
}

fn image(&self, n: usize) -> String {
println!("n: {n}");
if self.image.is_none() {
return String::new();
}
Expand All @@ -220,11 +219,6 @@ impl SvgBuilder {
image_size = override_size;
}

println!("gap: {:?}", self.image_gap);
println!("border_size: {border_size}");
println!("placed_coord: {placed_coord:?}");
println!("image_size: {image_size:?}");

if let Some((x, y)) = self.image_position {
placed_coord = (x - border_size / 2f64, y - border_size / 2f64);
}
Expand Down

0 comments on commit 56ee174

Please sign in to comment.