Module: UnicodePlot::BorderPrinter
Constant Summary
Constants included from StyledPrinter
StyledPrinter::COLOR_DECODE, StyledPrinter::COLOR_ENCODE, StyledPrinter::DISABLE_TEXT_STYLE, StyledPrinter::TEXT_COLORS
Instance Method Summary collapse
- #print_border_bottom(out, padding, length, border = :solid, color: :light_black) ⇒ Object
- #print_border_top(out, padding, length, border = :solid, color: :light_black) ⇒ Object
Methods included from StyledPrinter
#color?, #print_color, #print_styled
Instance Method Details
#print_border_bottom(out, padding, length, border = :solid, color: :light_black) ⇒ Object
52 53 54 55 56 |
# File 'lib/unicode_plot/renderer.rb', line 52 def print_border_bottom(out, padding, length, border=:solid, color: :light_black) return if border == :none b = BORDER_MAP[border] print_styled(out, padding, b[:bl], b[:b] * length, b[:br], color: color) end |
#print_border_top(out, padding, length, border = :solid, color: :light_black) ⇒ Object
46 47 48 49 50 |
# File 'lib/unicode_plot/renderer.rb', line 46 def print_border_top(out, padding, length, border=:solid, color: :light_black) return if border == :none b = BORDER_MAP[border] print_styled(out, padding, b[:tl], b[:t] * length, b[:tr], color: color) end |