removed some extraneous code

This commit is contained in:
Djairo Hougee 2023-02-08 22:10:34 +01:00
parent 529b6a61e2
commit fc6d2c9033
1 changed files with 1 additions and 5 deletions

View File

@ -69,8 +69,4 @@ pub fn to_braille_ascii(mut image: DynamicImage, threshold: u8) -> Vec<Vec<Ascii
str = Vec::new();
}
out
}
pub fn to_box_ascii(image: DynamicImage) -> Vec<Vec<Ascii>> {
//todo: this one
vec![vec![Ascii::new(0, 0, 0,0 )]]
}
}