Skip to main content

retroglyph_core/symbols/
block.rs

1/// A fully filled cell.
2pub const FULL: char = '█';
3/// Filled 7/8 from the left.
4pub const SEVEN_EIGHTHS: char = '▉';
5/// Filled 3/4 from the left.
6pub const THREE_QUARTERS: char = '▊';
7/// Filled 5/8 from the left.
8pub const FIVE_EIGHTHS: char = '▋';
9/// Filled 1/2 from the left.
10pub const HALF: char = '▌';
11/// Filled 3/8 from the left.
12pub const THREE_EIGHTHS: char = '▍';
13/// Filled 1/4 from the left.
14pub const ONE_QUARTER: char = '▎';
15/// Filled 1/8 from the left.
16pub const ONE_EIGHTH: char = '▏';