INNER CODE UNIT · Rust
simple_round_lines
lemunozm/ruscii · src/drawing.rs:52
pub fn simple_round_lines() -> RectCharset {
RectCharset::from("──││╭╮╰╯")
}
/// Returns a [`RectCharset`] for a double-line rectangle.
///
/// # Rectangle
///
/// Using this charset will provide a rectangle that looks like this:
///
/// ```text
/// ╔══════╗
/// ║ruscii║
/// ╚══════╝
/// ```
pub fn double_lines() -> RectCharset {
RectCharset::from("══║║╔╗╚╝")
}