INNER CODE UNIT · Rust
simple_lines
lemunozm/ruscii · src/drawing.rs:37
pub fn simple_lines() -> RectCharset {
RectCharset::from("──││┌┐└┘")
}
/// Returns a [`RectCharset`] for a single-line rounded-corner rectangle.
///
/// # Rectangle
///
/// Using this charset will provide a rectangle that looks like this:
///
/// ```text
/// ╭──────╮
/// │ruscii│
/// ╰──────╯
/// ```
pub fn simple_round_lines() -> RectCharset {
RectCharset::from("──││╭╮╰╯")
}