diff --git a/src/UnicodePlots.jl b/src/UnicodePlots.jl index 3fd19ac3..d8e1d1b5 100644 --- a/src/UnicodePlots.jl +++ b/src/UnicodePlots.jl @@ -1,6 +1,7 @@ module UnicodePlots using Dates +using Crayons using StatsBase: Histogram, fit, percentile using SparseArrays: AbstractSparseMatrix, findnz diff --git a/src/canvas.jl b/src/canvas.jl index 45bdb1cd..79b38a91 100644 --- a/src/canvas.jl +++ b/src/canvas.jl @@ -4,11 +4,11 @@ origin(c::Canvas) = (origin_x(c), origin_y(c)) Base.size(c::Canvas) = (width(c), height(c)) pixel_size(c::Canvas) = (pixel_width(c), pixel_height(c)) -function pixel!(c::Canvas, pixel_x::Integer, pixel_y::Integer; color::Union{Int, Symbol} = :normal) +function pixel!(c::Canvas, pixel_x::Integer, pixel_y::Integer; color::UserColorType = :normal) pixel!(c, pixel_x, pixel_y, color) end -function points!(c::Canvas, x::Number, y::Number, color::Union{Int, Symbol}) +function points!(c::Canvas, x::Number, y::Number, color::UserColorType) origin_x(c) <= x <= origin_x(c) + width(c) || return c origin_y(c) <= y <= origin_y(c) + height(c) || return c plot_offset_x = x - origin_x(c) @@ -18,11 +18,11 @@ function points!(c::Canvas, x::Number, y::Number, color::Union{Int, Symbol}) pixel!(c, floor(Int, pixel_x), floor(Int, pixel_y), color) end -function points!(c::Canvas, x::Number, y::Number; color::Union{Int, Symbol} = :normal) +function points!(c::Canvas, x::Number, y::Number; color::UserColorType = :normal) points!(c, x, y, color) end -function points!(c::Canvas, X::AbstractVector, Y::AbstractVector, color::Union{Int, Symbol}) +function points!(c::Canvas, X::AbstractVector, Y::AbstractVector, color::UserColorType) length(X) == length(Y) || throw(DimensionMismatch("X and Y must be the same length")) for I in eachindex(X, Y) points!(c, X[I], Y[I], color) @@ -30,7 +30,7 @@ function points!(c::Canvas, X::AbstractVector, Y::AbstractVector, color::Union{I c end -function points!(c::Canvas, X::AbstractVector, Y::AbstractVector, color::AbstractVector{T}) where {T <: Union{Int, Symbol}} +function points!(c::Canvas, X::AbstractVector, Y::AbstractVector, color::AbstractVector{T}) where {T <: UserColorType} (length(X) == length(color) && length(X) == length(Y)) || throw(DimensionMismatch("X, Y, and color must be the same length")) for i in 1:length(X) points!(c, X[i], Y[i], color[i]) @@ -38,12 +38,12 @@ function points!(c::Canvas, X::AbstractVector, Y::AbstractVector, color::Abstrac c end -function points!(c::Canvas, X::AbstractVector, Y::AbstractVector; color::Union{Int, Symbol} = :normal) +function points!(c::Canvas, X::AbstractVector, Y::AbstractVector; color::UserColorType = :normal) points!(c, X, Y, color) end # Implementation of the digital differential analyser (DDA) -function lines!(c::Canvas, x1::Number, y1::Number, x2::Number, y2::Number, color::Union{Int, Symbol}) +function lines!(c::Canvas, x1::Number, y1::Number, x2::Number, y2::Number, color::UserColorType) if (x1 < origin_x(c) && x2 < origin_x(c)) || (x1 > origin_x(c) + width(c) && x2 > origin_x(c) + width(c)) return c @@ -78,11 +78,11 @@ function lines!(c::Canvas, x1::Number, y1::Number, x2::Number, y2::Number, color c end -function lines!(c::Canvas, x1::Number, y1::Number, x2::Number, y2::Number; color::Union{Int, Symbol} = :normal) +function lines!(c::Canvas, x1::Number, y1::Number, x2::Number, y2::Number; color::UserColorType = :normal) lines!(c, x1, y1, x2, y2, color) end -function lines!(c::Canvas, X::AbstractVector, Y::AbstractVector, color::Union{Int, Symbol}) +function lines!(c::Canvas, X::AbstractVector, Y::AbstractVector, color::UserColorType) length(X) == length(Y) || throw(DimensionMismatch("X and Y must be the same length")) for i in 1:(length(X)-1) if isnan(X[i]) || isnan(X[i+1]) || isnan(Y[i]) || isnan(Y[i+1]) @@ -93,7 +93,7 @@ function lines!(c::Canvas, X::AbstractVector, Y::AbstractVector, color::Union{In c end -function lines!(c::Canvas, X::AbstractVector, Y::AbstractVector; color::Union{Int, Symbol} = :normal) +function lines!(c::Canvas, X::AbstractVector, Y::AbstractVector; color::UserColorType = :normal) lines!(c, X, Y, color) end diff --git a/src/canvas/asciicanvas.jl b/src/canvas/asciicanvas.jl index c58201d2..7cd9018b 100644 --- a/src/canvas/asciicanvas.jl +++ b/src/canvas/asciicanvas.jl @@ -104,7 +104,7 @@ instead. """ struct AsciiCanvas <: LookupCanvas grid::Array{UInt16,2} - colors::Array{UInt8,2} + colors::Array{ColorType,2} pixel_width::Int pixel_height::Int origin_x::Float64 diff --git a/src/canvas/blockcanvas.jl b/src/canvas/blockcanvas.jl index 34ccf1c6..e478ee4f 100644 --- a/src/canvas/blockcanvas.jl +++ b/src/canvas/blockcanvas.jl @@ -30,7 +30,7 @@ using binary operations. """ struct BlockCanvas <: LookupCanvas grid::Array{UInt8,2} - colors::Array{UInt8,2} + colors::Array{ColorType,2} pixel_width::Int pixel_height::Int origin_x::Float64 diff --git a/src/canvas/braillecanvas.jl b/src/canvas/braillecanvas.jl index a3625272..109f10bf 100644 --- a/src/canvas/braillecanvas.jl +++ b/src/canvas/braillecanvas.jl @@ -11,7 +11,7 @@ that can individually be manipulated using binary operations. """ struct BrailleCanvas <: Canvas grid::Array{Char,2} - colors::Array{UInt8,2} + colors::Array{ColorType,2} pixel_width::Int pixel_height::Int origin_x::Float64 @@ -44,14 +44,14 @@ function BrailleCanvas(char_width::Int, char_height::Int; pixel_width = char_width * x_pixel_per_char(BrailleCanvas) pixel_height = char_height * y_pixel_per_char(BrailleCanvas) grid = fill(Char(0x2800), char_width, char_height) - colors = fill(0x00, char_width, char_height) + colors = fill(nothing, char_width, char_height) BrailleCanvas(grid, colors, pixel_width, pixel_height, Float64(origin_x), Float64(origin_y), Float64(width), Float64(height)) end -function pixel!(c::BrailleCanvas, pixel_x::Int, pixel_y::Int, color::Symbol) +function pixel!(c::BrailleCanvas, pixel_x::Int, pixel_y::Int, color::UserColorType) 0 <= pixel_x <= c.pixel_width || return c 0 <= pixel_y <= c.pixel_height || return c pixel_x = pixel_x < c.pixel_width ? pixel_x : pixel_x - 1 @@ -66,7 +66,7 @@ function pixel!(c::BrailleCanvas, pixel_x::Int, pixel_y::Int, color::Symbol) char_y = floor(Int, pixel_y / c.pixel_height * ch) + 1 char_y_off = (pixel_y % 4) + 1 c.grid[char_x,char_y] = Char(UInt64(c.grid[char_x,char_y]) | UInt64(braille_signs[char_x_off, char_y_off])) - c.colors[char_x,char_y] = c.colors[char_x,char_y] | color_encode[color] + set_color!(c.colors, char_x, char_y, crayon_256_color(color)) c end diff --git a/src/canvas/densitycanvas.jl b/src/canvas/densitycanvas.jl index 49ab8fc2..28b449ae 100644 --- a/src/canvas/densitycanvas.jl +++ b/src/canvas/densitycanvas.jl @@ -11,7 +11,7 @@ the canvas can thus draw the density of datapoints. """ mutable struct DensityCanvas <: Canvas grid::Array{UInt,2} - colors::Array{UInt8,2} + colors::Array{ColorType,2} pixel_width::Int pixel_height::Int origin_x::Float64 @@ -45,7 +45,7 @@ function DensityCanvas(char_width::Int, char_height::Int; pixel_width = char_width * x_pixel_per_char(DensityCanvas) pixel_height = char_height * y_pixel_per_char(DensityCanvas) grid = fill(0, char_width, char_height) - colors = fill(0x00, char_width, char_height) + colors = fill(nothing, char_width, char_height) DensityCanvas(grid, colors, pixel_width, pixel_height, Float64(origin_x), Float64(origin_y), @@ -53,7 +53,7 @@ function DensityCanvas(char_width::Int, char_height::Int; 1) end -function pixel!(c::DensityCanvas, pixel_x::Int, pixel_y::Int, color::Symbol) +function pixel!(c::DensityCanvas, pixel_x::Int, pixel_y::Int, color::UserColorType) 0 <= pixel_x <= c.pixel_width || return c 0 <= pixel_y <= c.pixel_height || return c pixel_x = pixel_x < c.pixel_width ? pixel_x : pixel_x - 1 @@ -63,7 +63,7 @@ function pixel!(c::DensityCanvas, pixel_x::Int, pixel_y::Int, color::Symbol) char_y = floor(Int, pixel_y / c.pixel_height * ch) + 1 c.grid[char_x,char_y] += 1 c.max_density = max(c.max_density, c.grid[char_x,char_y]) - c.colors[char_x,char_y] = c.colors[char_x,char_y] | color_encode[color] + set_color!(c.colors, char_x, char_y, crayon_256_color(color)) c end diff --git a/src/canvas/dotcanvas.jl b/src/canvas/dotcanvas.jl index 14d6972e..cc5fc5bf 100644 --- a/src/canvas/dotcanvas.jl +++ b/src/canvas/dotcanvas.jl @@ -21,7 +21,7 @@ instead. """ struct DotCanvas <: LookupCanvas grid::Array{UInt8,2} - colors::Array{UInt8,2} + colors::Array{ColorType,2} pixel_width::Int pixel_height::Int origin_x::Float64 diff --git a/src/canvas/heatmapcanvas.jl b/src/canvas/heatmapcanvas.jl index 356bf1ce..bc9099c0 100644 --- a/src/canvas/heatmapcanvas.jl +++ b/src/canvas/heatmapcanvas.jl @@ -1,5 +1,3 @@ -using Crayons - """ The `HeatmapCanvas` is also Unicode-based. It has a half the resolution of the `BlockCanvas`. @@ -8,7 +6,7 @@ into two pixels (top and bottom). """ struct HeatmapCanvas <: LookupCanvas grid::Array{UInt8,2} - colors::Array{UInt8,2} + colors::Array{ColorType,2} pixel_width::Int pixel_height::Int origin_x::Float64 @@ -30,6 +28,8 @@ function HeatmapCanvas(args...; kwargs...) CreateLookupCanvas(HeatmapCanvas, args...; min_char_width=1, min_char_height=1, kwargs...) end +_toCrayon(c) = c === nothing ? 0 : (c isa Unsigned ? Int(c) : c) + function printrow(io::IO, c::HeatmapCanvas, row::Int) 0 < row <= nrows(c) || throw(ArgumentError("Argument row out of bounds: $row")) y = 2*row @@ -40,9 +40,9 @@ function printrow(io::IO, c::HeatmapCanvas, row::Int) iscolor = get(io, :color, false) for x in 1:ncols(c) if iscolor - fgcol = Int(colors(c)[x, y]) + fgcol = _toCrayon(c.colors[x, y]) if (y - 1) > 0 - bgcol = Int(colors(c)[x, y - 1]) + bgcol = _toCrayon(c.colors[x, y - 1]) print(io, Crayon(foreground=fgcol, background=bgcol), HALF_BLOCK) # for odd numbers of rows, only print the foreground for the top row else @@ -63,25 +63,19 @@ function printcolorbarrow(io::IO, c::HeatmapCanvas, row::Int, colormap::Any, bor max_z = lim[2] if row == 1 # print top border and maximum z value - printstyled(io, b[:tl]; color = :light_black) - printstyled(io, b[:t]; color = :light_black) - printstyled(io, b[:t]; color = :light_black) - printstyled(io, b[:tr]; color = :light_black) + print_color(:light_black, io, b[:tl], b[:t], b[:t], b[:tr]) max_z_str = isinteger(max_z) ? max_z : float_round_log10(max_z) print(io, plot_padding) - printstyled(io, max_z_str; color = :light_black) + print_color(:light_black, io, max_z_str) elseif row == nrows(c) # print bottom border and minimum z value - printstyled(io, b[:bl]; color = :light_black) - printstyled(io, b[:b]; color = :light_black) - printstyled(io, b[:b]; color = :light_black) - printstyled(io, b[:br]; color = :light_black) + print_color(:light_black, io, b[:bl], b[:b], b[:b], b[:br]) min_z_str = isinteger(min_z) ? min_z : float_round_log10(min_z) print(io, plot_padding) - printstyled(io, min_z_str; color = :light_black) + print_color(:light_black, io, min_z_str) else # print gradient - printstyled(io, b[:l]; color = :light_black) + print_color(:light_black, io, b[:l]) # if min and max are the same, single color if min_z == max_z bgcol = colormap(1, 1, 1) @@ -96,7 +90,7 @@ function printcolorbarrow(io::IO, c::HeatmapCanvas, row::Int, colormap::Any, bor print(io, Crayon(foreground=fgcol, background=bgcol), HALF_BLOCK) print(io, HALF_BLOCK) print(io, Crayon(reset=true)) - printstyled(io, b[:r]; color = :light_black) + print_color(:light_black, io, b[:r]) # print z label if row == div(nrows(c), 2) + 1 diff --git a/src/canvas/lookupcanvas.jl b/src/canvas/lookupcanvas.jl index 957174dd..bdf134cf 100644 --- a/src/canvas/lookupcanvas.jl +++ b/src/canvas/lookupcanvas.jl @@ -31,13 +31,13 @@ function CreateLookupCanvas( pixel_width = char_width * x_pixel_per_char(T) pixel_height = char_height * y_pixel_per_char(T) grid = fill(0x00, char_width, char_height) - colors = fill(0x00, char_width, char_height) + colors = fill(nothing, char_width, char_height) T(grid, colors, pixel_width, pixel_height, Float64(origin_x), Float64(origin_y), Float64(width), Float64(height)) end -function pixel!(c::T, pixel_x::Int, pixel_y::Int, color::Union{Int, Symbol}) where {T <: LookupCanvas} +function pixel!(c::T, pixel_x::Int, pixel_y::Int, color::UserColorType) where {T <: LookupCanvas} 0 <= pixel_x <= pixel_width(c) || return c 0 <= pixel_y <= pixel_height(c) || return c pixel_x = pixel_x < pixel_width(c) ? pixel_x : pixel_x - 1 @@ -51,13 +51,9 @@ function pixel!(c::T, pixel_x::Int, pixel_y::Int, color::Union{Int, Symbol}) whe end char_y = floor(Int, pixel_y / pixel_height(c) * ch) + 1 char_y_off = (pixel_y % y_pixel_per_char(T)) + 1 - grid(c)[char_x, char_y] = grid(c)[char_x,char_y] | lookup_encode(c)[char_x_off, char_y_off] - if color isa Symbol - colors(c)[char_x, char_y] = colors(c)[char_x,char_y] | color_encode[color] - else - # don't attempt to blend colors if they have been explicitly specified - colors(c)[char_x, char_y] = color - end + grid(c)[char_x, char_y] |= lookup_encode(c)[char_x_off, char_y_off] + force = !(color isa Symbol) # don't attempt to blend colors if they have been explicitly specified + set_color!(c.colors, char_x, char_y, crayon_256_color(color); force=force) c end diff --git a/src/common.jl b/src/common.jl index 03440d40..9b991f24 100644 --- a/src/common.jl +++ b/src/common.jl @@ -20,7 +20,8 @@ const DOC_PLOT_PARAMS = """ - **`color`** : Color of the drawing. Can be any of `:green`, `:blue`, `:red`, `:yellow`, `:cyan`, - `:magenta`, `:white`, `:normal` + `:magenta`, `:white`, `:normal`, an integer in the range `0`-`255` for Color256 palette, + or a tuple of three integers as RGB components. - **`width`** : Number of characters per row that should be used for plotting. @@ -166,25 +167,44 @@ bordermap[:dashed] = border_dashed bordermap[:dotted] = border_dotted bordermap[:ascii] = border_ascii +const UserColorType = Union{Integer,Symbol,NTuple{3,Integer},Nothing} # allowed color type +const JuliaColorType = Union{Symbol,Int} # color type for printstyled (defined in base/util.jl) +const ColorType = Union{Nothing,UInt8} # internal UnicodePlots color type + const color_cycle = [:green, :blue, :red, :magenta, :yellow, :cyan] -const color_encode = Dict{Symbol,UInt8}() -const color_decode = Dict{UInt8,Symbol}() -color_encode[:normal] = 0b000 -color_encode[:blue] = 0b001 -color_encode[:red] = 0b010 -color_encode[:magenta] = 0b011 -color_encode[:green] = 0b100 -color_encode[:cyan] = 0b101 -color_encode[:yellow] = 0b110 -for k in keys(color_encode) - v = color_encode[k] - color_decode[v] = k + +function print_color(color::UserColorType, io::IO, args...) + printstyled(io, string(args...); color = julia_color(color)) +end + +function crayon_256_color(color::UserColorType)::ColorType + color in (:normal, :default, :nothing, nothing) && return nothing + ansicolor = Crayons._parse_color(color) + if ansicolor.style == Crayons.COLORS_16 + return Crayons.val(ansicolor) % 60 + elseif ansicolor.style == Crayons.COLORS_24BIT + return Crayons.val(Crayons.to_256_colors(ansicolor)) + end + Crayons.val(ansicolor) end -color_encode[:white] = 0b111 -color_decode[0b111] = :white -function print_color(color::UInt8, io::IO, args...) - col = color in keys(color_decode) ? color_decode[color] : Int(color) - str = string(args...) - printstyled(io, str; color = col) +function julia_color(color::UserColorType)::JuliaColorType + if color isa Nothing + :normal + elseif color isa Symbol + color + elseif color isa Integer + Int(color) + else + julia_color(crayon_256_color(color)) + end +end + +@inline function set_color!(colors::Array{ColorType,2}, x::Int, y::Int, color::ColorType; force::Bool=false) + if color === nothing || colors[x, y] === nothing || force + colors[x, y] = color + else + colors[x, y] |= color + end + nothing end diff --git a/src/graphics.jl b/src/graphics.jl index 9b4a3205..c98f496d 100644 --- a/src/graphics.jl +++ b/src/graphics.jl @@ -17,9 +17,9 @@ function Base.show(io::IO, c::GraphicsArea) print_border_top(io, "", border_length, :solid, :light_black) print(io, '\n') for row in 1:nrows(c) - printstyled(io, b[:l]; color = :light_black) + print_color(:light_black, io, b[:l]) printrow(io, c, row) - printstyled(io, b[:r]; color = :light_black) + print_color(:light_black, io, b[:r]) print(io, '\n') end print_border_bottom(io, "", border_length, :solid, :light_black) diff --git a/src/graphics/bargraphics.jl b/src/graphics/bargraphics.jl index ac4b66ef..c9e4818e 100644 --- a/src/graphics/bargraphics.jl +++ b/src/graphics/bargraphics.jl @@ -1,6 +1,6 @@ mutable struct BarplotGraphics{R<:Number} <: GraphicsArea bars::Vector{R} - color::Symbol + color::ColorType char_width::Int max_freq::Number max_len::Int @@ -10,7 +10,7 @@ mutable struct BarplotGraphics{R<:Number} <: GraphicsArea function BarplotGraphics( bars::AbstractVector{R}, char_width::Int, - color::Symbol, + color::UserColorType, symb::Union{Char,String}, transform) where {R} length(symb) == 1 || throw(ArgumentError("The symbol to print has to be a single character, got: \"" * symb * "\"")) @@ -18,7 +18,7 @@ mutable struct BarplotGraphics{R<:Number} <: GraphicsArea max_freq, i = findmax(transform.(bars)) max_len = length(string(bars[i])) char_width = max(char_width, max_len + 7) - new{R}(bars, color, char_width, max_freq, max_len, string(symb), transform) + new{R}(bars, crayon_256_color(color), char_width, max_freq, max_len, string(symb), transform) end end @@ -29,9 +29,9 @@ function BarplotGraphics( bars::AbstractVector{R}, char_width::Int, transform = identity; - color::Symbol = :green, + color::UserColorType = :green, symb = "■") where {R <: Number} - BarplotGraphics(bars, char_width, color, symb, transform) + BarplotGraphics(bars, char_width, crayon_256_color(color), symb, transform) end function addrow!(g::BarplotGraphics{R}, bars::AbstractVector{R}) where {R <: Number} @@ -57,8 +57,8 @@ function printrow(io::IO, g::BarplotGraphics, row::Int) bar_len = max_freq > 0 ? round(Int, max(val, zero(val))/max_freq * max_bar_width, RoundNearestTiesUp) : 0 bar_str = max_freq > 0 ? repeat(g.symb, bar_len) : "" bar_lbl = string(bar) - printstyled(io, bar_str; color = g.color) - printstyled(io, " ", bar_lbl; color = :normal) + print_color(g.color, io, bar_str) + print_color(:normal, io, " ", bar_lbl) pan_len = max(max_bar_width + 1 + g.max_len - bar_len - length(bar_lbl), 0) pad = repeat(" ", round(Int, pan_len)) print(io, pad) diff --git a/src/graphics/boxgraphics.jl b/src/graphics/boxgraphics.jl index e0b2c1f2..debb4ccc 100644 --- a/src/graphics/boxgraphics.jl +++ b/src/graphics/boxgraphics.jl @@ -8,7 +8,7 @@ end mutable struct BoxplotGraphics{R<:Number} <: GraphicsArea data::Vector{FiveNumberSummary} - color::Symbol + color::ColorType char_width::Int min_x::R max_x::R @@ -16,7 +16,7 @@ mutable struct BoxplotGraphics{R<:Number} <: GraphicsArea function BoxplotGraphics{R}( data::AbstractVector{R}, char_width::Int, - color::Symbol, + color::UserColorType, min_x::R, max_x::R) where R char_width = max(char_width, 10) @@ -32,7 +32,7 @@ mutable struct BoxplotGraphics{R<:Number} <: GraphicsArea percentile(data, 75), maximum(data) )], - color, char_width, min_x, max_x + crayon_256_color(color), char_width, min_x, max_x ) end end @@ -43,10 +43,10 @@ ncols(c::BoxplotGraphics) = c.char_width function BoxplotGraphics( data::AbstractVector{R}, char_width::Int; - color::Symbol = :green, + color::UserColorType = :green, min_x::Number = minimum(data), max_x::Number = maximum(data)) where {R <: Number} - BoxplotGraphics{R}(data, char_width, color, R(min_x), R(max_x)) + BoxplotGraphics{R}(data, char_width, crayon_256_color(color), R(min_x), R(max_x)) end function addseries!(c::BoxplotGraphics, data::AbstractVector{R}) where {R <: Number} @@ -105,5 +105,5 @@ function printrow(io::IO, c::BoxplotGraphics, row::Int) line[i] = line_char end - printstyled(io, join(line), color = c.color) + print_color(c.color, io, join(line)) end diff --git a/src/interface/boxplot.jl b/src/interface/boxplot.jl index 7baef85f..e684d519 100644 --- a/src/interface/boxplot.jl +++ b/src/interface/boxplot.jl @@ -75,7 +75,7 @@ function boxplot( text::AbstractVector{<:AbstractString}, data::AbstractVector{<:AbstractArray{<:Number}}; border = :corners, - color::Symbol = :green, + color::UserColorType = :green, width::Int = 40, xlim = (0., 0.), kw...) diff --git a/src/interface/densityplot.jl b/src/interface/densityplot.jl index cb35c9a9..f451ceb9 100644 --- a/src/interface/densityplot.jl +++ b/src/interface/densityplot.jl @@ -85,7 +85,7 @@ See also function densityplot( x::AbstractVector, y::AbstractVector; - color::Symbol = :auto, + color::UserColorType = :auto, grid = false, name = "", kw...) diff --git a/src/interface/lineplot.jl b/src/interface/lineplot.jl index 937f13a7..072be086 100644 --- a/src/interface/lineplot.jl +++ b/src/interface/lineplot.jl @@ -98,7 +98,7 @@ function lineplot( x::AbstractVector, y::AbstractVector; canvas::Type = BrailleCanvas, - color::Symbol = :auto, + color::UserColorType = :auto, name = "", kw...) idx = map(!isnan, x) @@ -115,7 +115,7 @@ function lineplot!( plot::Plot{<:Canvas}, x::AbstractVector, y::AbstractVector; - color::Symbol = :auto, + color::UserColorType = :auto, name = "") color = color == :auto ? next_color!(plot) : color name == "" || annotate!(plot, :r, string(name), color) diff --git a/src/interface/scatterplot.jl b/src/interface/scatterplot.jl index fd9a3242..ea930eba 100644 --- a/src/interface/scatterplot.jl +++ b/src/interface/scatterplot.jl @@ -90,7 +90,7 @@ function scatterplot( x::AbstractVector, y::AbstractVector; canvas::Type = BrailleCanvas, - color::Symbol = :auto, + color::UserColorType = :auto, name = "", kw...) new_plot = Plot(x, y, canvas; kw...) @@ -105,7 +105,7 @@ function scatterplot!( plot::Plot{<:Canvas}, x::AbstractVector, y::AbstractVector; - color::Symbol = :auto, + color::UserColorType = :auto, name = "") color = (color == :auto) ? next_color!(plot) : color name == "" || annotate!(plot, :r, string(name), color) diff --git a/src/interface/spy.jl b/src/interface/spy.jl index f63b47a5..c41d875a 100644 --- a/src/interface/spy.jl +++ b/src/interface/spy.jl @@ -109,7 +109,7 @@ function spy( height::Int = 0, margin::Int = 3, padding::Int = 1, - color::Symbol = :auto, + color::UserColorType = :auto, canvas::Type{T} = BrailleCanvas, kw...) where {T <: Canvas} if color == :automatic diff --git a/src/plot.jl b/src/plot.jl index 55d123c8..30a9ef35 100644 --- a/src/plot.jl +++ b/src/plot.jl @@ -78,11 +78,11 @@ mutable struct Plot{T<:GraphicsArea} padding::Int border::Symbol labels_left::Dict{Int,String} - colors_left::Dict{Int,Symbol} + colors_left::Dict{Int,JuliaColorType} labels_right::Dict{Int,String} - colors_right::Dict{Int,Symbol} + colors_right::Dict{Int,JuliaColorType} decorations::Dict{Symbol,String} - colors_deco::Dict{Symbol,Symbol} + colors_deco::Dict{Symbol,JuliaColorType} show_labels::Bool colormap::Any show_colorbar::Bool @@ -109,11 +109,11 @@ function Plot( rows = nrows(graphics) cols = ncols(graphics) labels_left = Dict{Int,String}() - colors_left = Dict{Int,Symbol}() + colors_left = Dict{Int,JuliaColorType}() labels_right = Dict{Int,String}() - colors_right = Dict{Int,Symbol}() + colors_right = Dict{Int,JuliaColorType}() decorations = Dict{Symbol,String}() - colors_deco = Dict{Symbol,Symbol}() + colors_deco = Dict{Symbol,JuliaColorType}() Plot{T}(graphics, title, xlabel, ylabel, zlabel, margin, padding, border, labels_left, colors_left, labels_right, colors_right, @@ -297,50 +297,50 @@ If `where` is either `:l`, or `:r`, then `row` can be between 1 and the number of character rows of the plots canvas. """ -function annotate!(plot::Plot, loc::Symbol, value::AbstractString, color::Symbol) +function annotate!(plot::Plot, loc::Symbol, value::AbstractString, color::UserColorType) loc == :t || loc == :b || loc == :l || loc == :r || loc == :tl || loc == :tr || loc == :bl || loc == :br || throw(ArgumentError("Unknown location: try one of these :tl :t :tr :bl :b :br")) if loc == :l || loc == :r for row = 1:nrows(plot.graphics) if loc == :l if(!haskey(plot.labels_left, row) || plot.labels_left[row] == "") plot.labels_left[row] = value - plot.colors_left[row] = color + plot.colors_left[row] = julia_color(color) return plot end elseif loc == :r if(!haskey(plot.labels_right, row) || plot.labels_right[row] == "") plot.labels_right[row] = value - plot.colors_right[row] = color + plot.colors_right[row] = julia_color(color) return plot end end end else plot.decorations[loc] = value - plot.colors_deco[loc] = color + plot.colors_deco[loc] = julia_color(color) return plot end plot end -function annotate!(plot::Plot, loc::Symbol, value::AbstractString; color::Symbol=:normal) +function annotate!(plot::Plot, loc::Symbol, value::AbstractString; color::UserColorType=:normal) annotate!(plot, loc, value, color) end -function annotate!(plot::Plot, loc::Symbol, row::Int, value::AbstractString, color::Symbol) +function annotate!(plot::Plot, loc::Symbol, row::Int, value::AbstractString, color::UserColorType) if loc == :l plot.labels_left[row] = value - plot.colors_left[row] = color + plot.colors_left[row] = julia_color(color) elseif loc == :r plot.labels_right[row] = value - plot.colors_right[row] = color + plot.colors_right[row] = julia_color(color) else throw(ArgumentError("Unknown location \"$(string(loc))\", try `:l` or `:r` instead")) end plot end -function annotate!(plot::Plot, loc::Symbol, row::Int, value::AbstractString; color::Symbol=:normal) +function annotate!(plot::Plot, loc::Symbol, row::Int, value::AbstractString; color::UserColorType=:normal) annotate!(plot, loc, row, value, color) end @@ -364,18 +364,18 @@ function print_title(io::IO, padding::AbstractString, title::AbstractString; p_w offset = round(Int, p_width / 2 - length(title) / 2, RoundNearestTiesUp) offset = offset > 0 ? offset : 0 tpad = repeat(" ", offset) - printstyled(io, padding, tpad, title; color = color) + print_color(color, io, padding, tpad, title) end end -function print_border_top(io::IO, padding::AbstractString, length::Int, border::Symbol = :solid, color::Symbol = :light_black) +function print_border_top(io::IO, padding::AbstractString, length::Int, border::Symbol = :solid, color::UserColorType = :light_black) b = bordermap[border] - border == :none || printstyled(io, padding, b[:tl], repeat(b[:t], length), b[:tr]; color = color) + border == :none || print_color(color, io, padding, b[:tl], repeat(b[:t], length), b[:tr]) end -function print_border_bottom(io::IO, padding::AbstractString, length::Int, border::Symbol = :solid, color::Symbol = :light_black) +function print_border_bottom(io::IO, padding::AbstractString, length::Int, border::Symbol = :solid, color::UserColorType = :light_black) b = bordermap[border] - border == :none || printstyled(io, padding, b[:bl], repeat(b[:b], length), b[:br]; color = color) + border == :none || print_color(color, io, padding, b[:bl], repeat(b[:b], length), b[:br]) end _nocolor_string(str) = replace(string(str), r"\e\[[0-9]+m" => "") @@ -415,13 +415,13 @@ function Base.show(io::IO, p::Plot) topleft_len = length(topleft_str) topmid_len = length(topmid_str) topright_len = length(topright_str) - printstyled(io, border_padding, topleft_str; color = topleft_col) + print_color(topleft_col, io, border_padding, topleft_str) cnt = round(Int, border_length / 2 - topmid_len / 2 - topleft_len, RoundNearestTiesUp) pad = cnt > 0 ? repeat(" ", cnt) : "" - printstyled(io, pad, topmid_str; color = topmid_col) + print_color(topmid_col, io, pad, topmid_str) cnt = border_length - topright_len - topleft_len - topmid_len + 2 - cnt pad = cnt > 0 ? repeat(" ", cnt) : "" - printstyled(io, pad, topright_str, "\n"; color = topright_col) + print_color(topright_col, io, pad, topright_str, "\n") end end print_border_top(io, border_padding, border_length, p.border) @@ -448,24 +448,24 @@ function Base.show(io::IO, p::Plot) if p.show_labels if row == y_lab_row # print ylabel - printstyled(io, p.ylabel; color = :normal) + print_color(:normal, io, p.ylabel) print(io, repeat(" ", max_len_l - length(p.ylabel) - left_len)) else # print padding to fill ylabel length print(io, repeat(" ", max_len_l - left_len)) end # print the left annotation - printstyled(io, left_str; color = left_col) + print_color(left_col, io, left_str) end # print left border - printstyled(io, plot_padding, b[:l]; color = :light_black) + print_color(:light_black, io, plot_padding, b[:l]) # print canvas row printrow(io, c, row) # print right label and padding - printstyled(io, b[:r]; color = :light_black) + print_color(:light_black, io, b[:r]) if p.show_labels print(io, plot_padding) - printstyled(io, right_str; color = right_col) + print_color(right_col, io, right_str) print(io, repeat(" ", max_len_r - right_len)) end # print colorbar @@ -491,13 +491,13 @@ function Base.show(io::IO, p::Plot) botleft_len = length(botleft_str) botmid_len = length(botmid_str) botright_len = length(botright_str) - printstyled(io, border_padding, botleft_str; color = botleft_col) + print_color(botleft_col, io, border_padding, botleft_str) cnt = round(Int, border_length / 2 - botmid_len / 2 - botleft_len, RoundNearestTiesUp) pad = cnt > 0 ? repeat(" ", cnt) : "" - printstyled(io, pad, botmid_str; color = botmid_col) + print_color(botmid_col, io, pad, botmid_str) cnt = border_length - botright_len - botleft_len - botmid_len + 2 - cnt pad = cnt > 0 ? repeat(" ", cnt) : "" - printstyled(io, pad, botright_str; color = botright_col) + print_color(botright_col, io, pad, botright_str) end # abuse the print_title function to print the xlabel. maybe refactor this p.xlabel != "" && println(io) diff --git a/test/references/barplot/col1.txt b/test/references/barplot/col1.txt new file mode 100644 index 00000000..6bdf57de --- /dev/null +++ b/test/references/barplot/col1.txt @@ -0,0 +1,4 @@ + ┌ ┐ + B ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 2   + A ┤■■■■■■■■■■■■■■■■■■■ 1   + └ ┘ \ No newline at end of file diff --git a/test/references/barplot/col2.txt b/test/references/barplot/col2.txt new file mode 100644 index 00000000..19ce2596 --- /dev/null +++ b/test/references/barplot/col2.txt @@ -0,0 +1,4 @@ + ┌ ┐ + B ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 2   + A ┤■■■■■■■■■■■■■■■■■■■ 1   + └ ┘ \ No newline at end of file diff --git a/test/references/barplot/default.txt b/test/references/barplot/default.txt index 503e7d8f..e5f095ca 100644 --- a/test/references/barplot/default.txt +++ b/test/references/barplot/default.txt @@ -1,4 +1,4 @@  ┌ ┐ - bar ┤■■■■■■■■■■■■■■■■■■■■■■ 23   - foo ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 37   + bar ┤■■■■■■■■■■■■■■■■■■■■■■ 23   + foo ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 37    └ ┘ \ No newline at end of file diff --git a/test/references/barplot/default2.txt b/test/references/barplot/default2.txt index f8fa4d88..b87c883f 100644 --- a/test/references/barplot/default2.txt +++ b/test/references/barplot/default2.txt @@ -1,5 +1,5 @@  ┌ ┐ - bar ┤■■■■■■■■■ 23   - foo ┤■■■■■■■■■■■■■■■ 37   - zoom ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 90   + bar ┤■■■■■■■■■ 23   + foo ┤■■■■■■■■■■■■■■■ 37   + zoom ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 90    └ ┘ \ No newline at end of file diff --git a/test/references/barplot/default_mixed.txt b/test/references/barplot/default_mixed.txt index c9c76d15..51763259 100644 --- a/test/references/barplot/default_mixed.txt +++ b/test/references/barplot/default_mixed.txt @@ -1,5 +1,5 @@  ┌ ┐ - 2.1 ┤■■■■■■■■■ 10   - bar ┤■■■■■■■■■■■■■■■■■■■■■ 23.0   - foo ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 37.0   + 2.1 ┤■■■■■■■■■ 10   + bar ┤■■■■■■■■■■■■■■■■■■■■■ 23.0   + foo ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 37.0    └ ┘ \ No newline at end of file diff --git a/test/references/barplot/edgecase_onelarge.txt b/test/references/barplot/edgecase_onelarge.txt index 7c6b70c6..a3ca59e7 100644 --- a/test/references/barplot/edgecase_onelarge.txt +++ b/test/references/barplot/edgecase_onelarge.txt @@ -2,5 +2,5 @@ a ┤ 1   b ┤ 1   c ┤ 1   - d ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 1000000   + d ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 1000000    └ ┘ \ No newline at end of file diff --git a/test/references/barplot/log10.txt b/test/references/barplot/log10.txt index 5951cc51..65dba037 100644 --- a/test/references/barplot/log10.txt +++ b/test/references/barplot/log10.txt @@ -2,8 +2,8 @@  ┌ ┐ a ┤ 0   b ┤ 1   - c ┤■■■■■■■■■■■ 10   - d ┤■■■■■■■■■■■■■■■■■■■■■■■ 100   - e ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 1000   + c ┤■■■■■■■■■■■ 10   + d ┤■■■■■■■■■■■■■■■■■■■■■■■ 100   + e ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 1000    └ ┘  [log10] \ No newline at end of file diff --git a/test/references/barplot/log10_label.txt b/test/references/barplot/log10_label.txt index b0c02cd5..dc316fb9 100644 --- a/test/references/barplot/log10_label.txt +++ b/test/references/barplot/log10_label.txt @@ -2,8 +2,8 @@  ┌ ┐ a ┤ 0   b ┤ 1   - c ┤■■■■■■■■■■■ 10   - d ┤■■■■■■■■■■■■■■■■■■■■■■■ 100   - e ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 1000   + c ┤■■■■■■■■■■■ 10   + d ┤■■■■■■■■■■■■■■■■■■■■■■■ 100   + e ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 1000    └ ┘  custom label \ No newline at end of file diff --git a/test/references/barplot/parameters1.txt b/test/references/barplot/parameters1.txt index a0a25e68..2ce5cf5c 100644 --- a/test/references/barplot/parameters1.txt +++ b/test/references/barplot/parameters1.txt @@ -1,8 +1,8 @@  Relative sizes of cities  ┌ ┐ - Paris ┤■■■■■■ 2.244   - New York ┤■■■■■■■■■■■■■■■■■■■■■■■ 8.406   - Moskau ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 11.92   - Madrid ┤■■■■■■■■■ 3.165   + Paris ┤■■■■■■ 2.244   + New York ┤■■■■■■■■■■■■■■■■■■■■■■■ 8.406   + Moskau ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 11.92   + Madrid ┤■■■■■■■■■ 3.165    └ ┘  population [in mil] \ No newline at end of file diff --git a/test/references/barplot/parameters1_nolabels.txt b/test/references/barplot/parameters1_nolabels.txt index 17dd9e80..fb72d595 100644 --- a/test/references/barplot/parameters1_nolabels.txt +++ b/test/references/barplot/parameters1_nolabels.txt @@ -1,7 +1,7 @@  Relative sizes of cities  ┌ ┐ -  ┤■■■■■■ 2.244   -  ┤■■■■■■■■■■■■■■■■■■■■■■■ 8.406   -  ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 11.92   -  ┤■■■■■■■■■ 3.165   +  ┤■■■■■■ 2.244   +  ┤■■■■■■■■■■■■■■■■■■■■■■■ 8.406   +  ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 11.92   +  ┤■■■■■■■■■ 3.165    └ ┘ \ No newline at end of file diff --git a/test/references/barplot/parameters2.txt b/test/references/barplot/parameters2.txt index ecaefca1..8fba5ec3 100644 --- a/test/references/barplot/parameters2.txt +++ b/test/references/barplot/parameters2.txt @@ -1,8 +1,8 @@  Relative sizes of cities  ┌────────────────────────────────────────────────────────────┐ - Paris │========== 2.244 │ - New York │===================================== 8.406 │ - Moskau │===================================================== 11.92 │ - Madrid │============== 3.165 │ + Paris │========== 2.244 │ + New York │===================================== 8.406 │ + Moskau │===================================================== 11.92 │ + Madrid │============== 3.165 │  └────────────────────────────────────────────────────────────┘  population [in mil] \ No newline at end of file diff --git a/test/references/barplot/ranges.txt b/test/references/barplot/ranges.txt index f02242eb..92c17323 100644 --- a/test/references/barplot/ranges.txt +++ b/test/references/barplot/ranges.txt @@ -1,7 +1,7 @@  ┌ ┐ - 2 ┤■■■■■■■■■■■■■■■■■■■■■■■■■■ 11   - 3 ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 12   - 4 ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 13   - 5 ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 14   - 6 ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 15   + 2 ┤■■■■■■■■■■■■■■■■■■■■■■■■■■ 11   + 3 ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 12   + 4 ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 13   + 5 ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 14   + 6 ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 15    └ ┘ \ No newline at end of file diff --git a/test/references/barplot/ranges2.txt b/test/references/barplot/ranges2.txt index ce7a1ba8..545809ab 100644 --- a/test/references/barplot/ranges2.txt +++ b/test/references/barplot/ranges2.txt @@ -1,9 +1,9 @@  ┌ ┐ - 2 ┤■■■■■■■■■■■■■■■■■■■ 11   - 3 ┤■■■■■■■■■■■■■■■■■■■■■ 12   - 4 ┤■■■■■■■■■■■■■■■■■■■■■■ 13   - 5 ┤■■■■■■■■■■■■■■■■■■■■■■■■ 14   - 6 ┤■■■■■■■■■■■■■■■■■■■■■■■■■■ 15   - 9 ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 20   - 10 ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 21   + 2 ┤■■■■■■■■■■■■■■■■■■■ 11   + 3 ┤■■■■■■■■■■■■■■■■■■■■■ 12   + 4 ┤■■■■■■■■■■■■■■■■■■■■■■ 13   + 5 ┤■■■■■■■■■■■■■■■■■■■■■■■■ 14   + 6 ┤■■■■■■■■■■■■■■■■■■■■■■■■■■ 15   + 9 ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 20   + 10 ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 21    └ ┘ \ No newline at end of file diff --git a/test/references/boxplot/col1.txt b/test/references/boxplot/col1.txt new file mode 100644 index 00000000..1512f903 --- /dev/null +++ b/test/references/boxplot/col1.txt @@ -0,0 +1,9 @@ + ┌ ┐ +  ╷ ┌───┬───┐ ╷   + one ├──┤ │ ├───┤   +  ╵ └───┴───┘ ╵   +   ╷ ┌───┬───┐ ╷  + two  ├───┤ │ ├───┤  +   ╵ └───┴───┘ ╵  + └ ┘ + 1 3.5 6 \ No newline at end of file diff --git a/test/references/boxplot/col2.txt b/test/references/boxplot/col2.txt new file mode 100644 index 00000000..7f584044 --- /dev/null +++ b/test/references/boxplot/col2.txt @@ -0,0 +1,9 @@ + ┌ ┐ +  ╷ ┌───┬───┐ ╷   + one ├──┤ │ ├───┤   +  ╵ └───┴───┘ ╵   +   ╷ ┌───┬───┐ ╷  + two  ├───┤ │ ├───┤  +   ╵ └───┴───┘ ╵  + └ ┘ + 1 3.5 6 \ No newline at end of file diff --git a/test/references/boxplot/default.txt b/test/references/boxplot/default.txt index 139d52df..2a998cce 100644 --- a/test/references/boxplot/default.txt +++ b/test/references/boxplot/default.txt @@ -1,6 +1,6 @@  ┌ ┐ -  ╷ ┌─────────┬─────────┐ ╷  -  ├────────┤ │ ├─────────┤  -  ╵ └─────────┴─────────┘ ╵  +  ╷ ┌─────────┬─────────┐ ╷  +  ├────────┤ │ ├─────────┤  +  ╵ └─────────┴─────────┘ ╵   └ ┘  1 3 5 \ No newline at end of file diff --git a/test/references/boxplot/default_name.txt b/test/references/boxplot/default_name.txt index 97edd9ab..5b2e2f43 100644 --- a/test/references/boxplot/default_name.txt +++ b/test/references/boxplot/default_name.txt @@ -1,6 +1,6 @@  ┌ ┐ -  ╷ ┌─────────┬─────────┐ ╷  - series1 ├────────┤ │ ├─────────┤  -  ╵ └─────────┴─────────┘ ╵  +  ╷ ┌─────────┬─────────┐ ╷  + series1 ├────────┤ │ ├─────────┤  +  ╵ └─────────┴─────────┘ ╵   └ ┘  1 3 5 \ No newline at end of file diff --git a/test/references/boxplot/default_parameters.txt b/test/references/boxplot/default_parameters.txt index 0851cc7d..8f3f0c32 100644 --- a/test/references/boxplot/default_parameters.txt +++ b/test/references/boxplot/default_parameters.txt @@ -1,8 +1,8 @@  Test  ┌──────────────────────────────────────────────────┐ -  │ ╷ ┌────┬─────┐ ╷ │ - series1 │ ├─────┤ │ ├────┤ │ -  │ ╵ └────┴─────┘ ╵ │ +  │ ╷ ┌────┬─────┐ ╷ │ + series1 │ ├─────┤ │ ├────┤ │ +  │ ╵ └────┴─────┘ ╵ │  └──────────────────────────────────────────────────┘  -1 3.5 8  foo \ No newline at end of file diff --git a/test/references/boxplot/multi1.txt b/test/references/boxplot/multi1.txt index 04ab74ee..d29be5b9 100644 --- a/test/references/boxplot/multi1.txt +++ b/test/references/boxplot/multi1.txt @@ -1,11 +1,11 @@  Multi-series  ┌ ┐ -  ╷ ┌────┬────┐ ╷   - one ├───┤ │ ├────┤   -  ╵ └────┴────┘ ╵   -   ╷ ┌───────┬────────┐ ╷  - two  ├────────┤ │ ├────────┤  -   ╵ └───────┴────────┘ ╵  +  ╷ ┌────┬────┐ ╷   + one ├───┤ │ ├────┤   +  ╵ └────┴────┘ ╵   +   ╷ ┌───────┬────────┐ ╷  + two  ├────────┤ │ ├────────┤  +   ╵ └───────┴────────┘ ╵   └ ┘  1 5 9  foo \ No newline at end of file diff --git a/test/references/boxplot/multi2.txt b/test/references/boxplot/multi2.txt index 28e129f5..63c59b7b 100644 --- a/test/references/boxplot/multi2.txt +++ b/test/references/boxplot/multi2.txt @@ -1,14 +1,14 @@  Multi-series  ┌ ┐ -   ╷ ┌──┬───┐ ╷   - one  ├──┤ │ ├──┤   -   ╵ └──┴───┘ ╵   -   ╷ ┌─────┬─────┐ ╷   - two  ├─────┤ │ ├────┤   -   ╵ └─────┴─────┘ ╵   -  ╷ ┌──┬───┐ ╷  - one more ├────────┤ │ ├──────────────────────┤  -  ╵ └──┴───┘ ╵  +   ╷ ┌──┬───┐ ╷   + one  ├──┤ │ ├──┤   +   ╵ └──┴───┘ ╵   +   ╷ ┌─────┬─────┐ ╷   + two  ├─────┤ │ ├────┤   +   ╵ └─────┴─────┘ ╵   +  ╷ ┌──┬───┐ ╷  + one more ├────────┤ │ ├──────────────────────┤  +  ╵ └──┴───┘ ╵   └ ┘  -1 5 11  foo \ No newline at end of file diff --git a/test/references/boxplot/multi3.txt b/test/references/boxplot/multi3.txt index e52e0395..3ea39766 100644 --- a/test/references/boxplot/multi3.txt +++ b/test/references/boxplot/multi3.txt @@ -1,17 +1,17 @@  Multi-series  ┌ ┐ -   ╷ ┌──┬─┐ ╷   - one  ├──┤ │ ├──┤   -   ╵ └──┴─┘ ╵   -   ╷ ┌───┬────┐ ╷   - two  ├────┤ │ ├────┤   -   ╵ └───┴────┘ ╵   -  ╷ ┌──┬─┐ ╷   - one more ├──────┤ │ ├──────────────────┤   -  ╵ └──┴─┘ ╵   -   ╷┌───┐ ╷  - last one  ├┤ ├──────────────────────────┤  -   ╵└───┘ ╵  +   ╷ ┌──┬─┐ ╷   + one  ├──┤ │ ├──┤   +   ╵ └──┴─┘ ╵   +   ╷ ┌───┬────┐ ╷   + two  ├────┤ │ ├────┤   +   ╵ └───┴────┘ ╵   +  ╷ ┌──┬─┐ ╷   + one more ├──────┤ │ ├──────────────────┤   +  ╵ └──┴─┘ ╵   +   ╷┌───┐ ╷  + last one  ├┤ ├──────────────────────────┤  +   ╵└───┘ ╵   └ ┘  -1 6.5 14  foo \ No newline at end of file diff --git a/test/references/boxplot/scale1.txt b/test/references/boxplot/scale1.txt index 35d86bdb..cc275a35 100644 --- a/test/references/boxplot/scale1.txt +++ b/test/references/boxplot/scale1.txt @@ -1,6 +1,6 @@  ┌ ┐ -   ╷ ┌───────┬───────┐ ╷  -   ├───────┤ │ ├───────┤  -   ╵ └───────┴───────┘ ╵  +   ╷ ┌───────┬───────┐ ╷  +   ├───────┤ │ ├───────┤  +   ╵ └───────┴───────┘ ╵   └ ┘  0 2.5 5 \ No newline at end of file diff --git a/test/references/boxplot/scale2.txt b/test/references/boxplot/scale2.txt index fe59ae99..2db83871 100644 --- a/test/references/boxplot/scale2.txt +++ b/test/references/boxplot/scale2.txt @@ -1,6 +1,6 @@  ┌ ┐ -   ╷ ┌──────┬──────┐ ╷   -   ├─────┤ │ ├─────┤   -   ╵ └──────┴──────┘ ╵   +   ╷ ┌──────┬──────┐ ╷   +   ├─────┤ │ ├─────┤   +   ╵ └──────┴──────┘ ╵    └ ┘  0 3 6 \ No newline at end of file diff --git a/test/references/boxplot/scale3.txt b/test/references/boxplot/scale3.txt index 23d40147..0de32a87 100644 --- a/test/references/boxplot/scale3.txt +++ b/test/references/boxplot/scale3.txt @@ -1,6 +1,6 @@  ┌ ┐ -   ╷ ┌───┬───┐ ╷   -   ├───┤ │ ├───┤   -   ╵ └───┴───┘ ╵   +   ╷ ┌───┬───┐ ╷   +   ├───┤ │ ├───┤   +   ╵ └───┴───┘ ╵    └ ┘  0 5 10 \ No newline at end of file diff --git a/test/references/boxplot/scale4.txt b/test/references/boxplot/scale4.txt index cdd1eb57..58105387 100644 --- a/test/references/boxplot/scale4.txt +++ b/test/references/boxplot/scale4.txt @@ -1,6 +1,6 @@  ┌ ┐ -   ╷ ┌─┬─┐ ╷   -   ├─┤ │ ├─┤   -   ╵ └─┴─┘ ╵   +   ╷ ┌─┬─┐ ╷   +   ├─┤ │ ├─┤   +   ╵ └─┴─┘ ╵    └ ┘  0 10 20 \ No newline at end of file diff --git a/test/references/boxplot/scale5.txt b/test/references/boxplot/scale5.txt index a6cc1ffd..894dc728 100644 --- a/test/references/boxplot/scale5.txt +++ b/test/references/boxplot/scale5.txt @@ -1,6 +1,6 @@  ┌ ┐ -  ╷┌┬┐╷   -  ├┤│├┤   -  ╵└┴┘╵   +  ╷┌┬┐╷   +  ├┤│├┤   +  ╵└┴┘╵    └ ┘  0 20 40 \ No newline at end of file diff --git a/test/references/canvas/ascii_print.txt b/test/references/canvas/ascii_print.txt index 3956fb89..81d735ca 100644 --- a/test/references/canvas/ascii_print.txt +++ b/test/references/canvas/ascii_print.txt @@ -1,10 +1,10 @@ -^.            .        '    `  ,  . ..-" -| \.          ,.          *    ...-"`   -|   \(    '.  `.  "   .     ,.-"`  .   . -|   ""\{T"T"""\---------v_r=________ "` -|  .   `\.     .    ..-"`       "   `.  -|    .    \.    ..-"` *    '     *      -|           )_-"'                    ,  -| `     ..-"` \. ,        ,.     . '.  . -|   .)-"`  *  ` \.  ,  .`         .  '  -L.-\`         .   \..                 . \ No newline at end of file +^.            .        '    `  ,  . ..-" +| \.          ,.          *    ...-"`   +|   \(    '.  `.  "   .     ,.-"`  .   . +|   ""\{T"T"""\---------v_r=________ "` +|  .   `\.     .    ..-"`       "   `.  +|    .    \.    ..-"` *    '     *      +|           )_-"'                    ,  +| `     ..-"` \. ,        ,.     . '.  . +|   .)-"`  *  ` \.  ,  .`         .  '  +L.-\`         .   \..                 . \ No newline at end of file diff --git a/test/references/canvas/ascii_printrow.txt b/test/references/canvas/ascii_printrow.txt index 79dbb038..83b1efa6 100644 --- a/test/references/canvas/ascii_printrow.txt +++ b/test/references/canvas/ascii_printrow.txt @@ -1 +1 @@ -|   \(    '.  `.  "   .     ,.-"`  .   . \ No newline at end of file +|   \(    '.  `.  "   .     ,.-"`  .   . \ No newline at end of file diff --git a/test/references/canvas/ascii_show.txt b/test/references/canvas/ascii_show.txt index 24455d02..680db830 100644 --- a/test/references/canvas/ascii_show.txt +++ b/test/references/canvas/ascii_show.txt @@ -1,12 +1,12 @@ ┌────────────────────────────────────────┐ -│^.            .        '    `  ,  . ..-"│ -│| \.          ,.          *    ...-"`   │ -│|   \(    '.  `.  "   .     ,.-"`  .   .│ -│|   ""\{T"T"""\---------v_r=________ "` │ -│|  .   `\.     .    ..-"`       "   `.  │ -│|    .    \.    ..-"` *    '     *      │ -│|           )_-"'                    ,  │ -│| `     ..-"` \. ,        ,.     . '.  .│ -│|   .)-"`  *  ` \.  ,  .`         .  '  │ -│L.-\`         .   \..                 . │ +│^.            .        '    `  ,  . ..-"│ +│| \.          ,.          *    ...-"`   │ +│|   \(    '.  `.  "   .     ,.-"`  .   .│ +│|   ""\{T"T"""\---------v_r=________ "` │ +│|  .   `\.     .    ..-"`       "   `.  │ +│|    .    \.    ..-"` *    '     *      │ +│|           )_-"'                    ,  │ +│| `     ..-"` \. ,        ,.     . '.  .│ +│|   .)-"`  *  ` \.  ,  .`         .  '  │ +│L.-\`         .   \..                 . │ └────────────────────────────────────────┘ \ No newline at end of file diff --git a/test/references/canvas/block_print.txt b/test/references/canvas/block_print.txt index dabb5da5..3a880391 100644 --- a/test/references/canvas/block_print.txt +++ b/test/references/canvas/block_print.txt @@ -1,10 +1,10 @@ -▛▄            ▗        ▝    ▘  ▘  ▖ ▐▄▞▀ -▌ ▜▄          ▗▗          ▝    ▄▗▄▞▀▘   -▌▘  ▀▙    ▝▖  ▘▖  ▝   ▗     ▐▄▞▀▘  ▖   ▗ -▛   ▀▛▀█▛▀▜▜▀▀▀▀▀▀▀▀█▄▄▄▄▄▟█▙▄▄▄▄▄▄▄ ▝▘ -▌  ▗   ▘▀▄     ▐    ▗▄▞▀▘       ▝   ▘▖  -▌    ▖    ▀▄    ▗▄▞▀▘ ▖    ▝     ▘      -▌           ▜▄▞▀▀                    ▖  -▌ ▘     ▗▄▞▀▘ ▀▄ ▘        ▗▖     ▖ ▝▗  ▖ -▌   ▗▙▞▀▘  ▝  ▘ ▀▄  ▘  ▗▘         ▖  ▘  -█▄▞█▘         ▖   ▀▄▖                 ▖ \ No newline at end of file +▛▄            ▗        ▝    ▘  ▘  ▖ ▐▄▞▀ +▌ ▜▄          ▗▗          ▝    ▄▗▄▞▀▘   +▌▘  ▀▙    ▝▖  ▘▖  ▝   ▗     ▐▄▞▀▘  ▖   ▗ +▛   ▀▛▀█▛▀▜▜▀▀▀▀▀▀▀▀█▄▄▄▄▄▟█▙▄▄▄▄▄▄▄ ▝▘ +▌  ▗   ▘▀▄     ▐    ▗▄▞▀▘       ▝   ▘▖  +▌    ▖    ▀▄    ▗▄▞▀▘ ▖    ▝     ▘      +▌           ▜▄▞▀▀                    ▖  +▌ ▘     ▗▄▞▀▘ ▀▄ ▘        ▗▖     ▖ ▝▗  ▖ +▌   ▗▙▞▀▘  ▝  ▘ ▀▄  ▘  ▗▘         ▖  ▘  +█▄▞█▘         ▖   ▀▄▖                 ▖ \ No newline at end of file diff --git a/test/references/canvas/block_printrow.txt b/test/references/canvas/block_printrow.txt index 280ca0e8..a4a6192b 100644 --- a/test/references/canvas/block_printrow.txt +++ b/test/references/canvas/block_printrow.txt @@ -1 +1 @@ -▌▘  ▀▙    ▝▖  ▘▖  ▝   ▗     ▐▄▞▀▘  ▖   ▗ \ No newline at end of file +▌▘  ▀▙    ▝▖  ▘▖  ▝   ▗     ▐▄▞▀▘  ▖   ▗ \ No newline at end of file diff --git a/test/references/canvas/block_show.txt b/test/references/canvas/block_show.txt index 142ed949..2a55ef8d 100644 --- a/test/references/canvas/block_show.txt +++ b/test/references/canvas/block_show.txt @@ -1,12 +1,12 @@ ┌────────────────────────────────────────┐ -│▛▄            ▗        ▝    ▘  ▘  ▖ ▐▄▞▀│ -│▌ ▜▄          ▗▗          ▝    ▄▗▄▞▀▘   │ -│▌▘  ▀▙    ▝▖  ▘▖  ▝   ▗     ▐▄▞▀▘  ▖   ▗│ -│▛   ▀▛▀█▛▀▜▜▀▀▀▀▀▀▀▀█▄▄▄▄▄▟█▙▄▄▄▄▄▄▄ ▝▘ │ -│▌  ▗   ▘▀▄     ▐    ▗▄▞▀▘       ▝   ▘▖  │ -│▌    ▖    ▀▄    ▗▄▞▀▘ ▖    ▝     ▘      │ -│▌           ▜▄▞▀▀                    ▖  │ -│▌ ▘     ▗▄▞▀▘ ▀▄ ▘        ▗▖     ▖ ▝▗  ▖│ -│▌   ▗▙▞▀▘  ▝  ▘ ▀▄  ▘  ▗▘         ▖  ▘  │ -│█▄▞█▘         ▖   ▀▄▖                 ▖ │ +│▛▄            ▗        ▝    ▘  ▘  ▖ ▐▄▞▀│ +│▌ ▜▄          ▗▗          ▝    ▄▗▄▞▀▘   │ +│▌▘  ▀▙    ▝▖  ▘▖  ▝   ▗     ▐▄▞▀▘  ▖   ▗│ +│▛   ▀▛▀█▛▀▜▜▀▀▀▀▀▀▀▀█▄▄▄▄▄▟█▙▄▄▄▄▄▄▄ ▝▘ │ +│▌  ▗   ▘▀▄     ▐    ▗▄▞▀▘       ▝   ▘▖  │ +│▌    ▖    ▀▄    ▗▄▞▀▘ ▖    ▝     ▘      │ +│▌           ▜▄▞▀▀                    ▖  │ +│▌ ▘     ▗▄▞▀▘ ▀▄ ▘        ▗▖     ▖ ▝▗  ▖│ +│▌   ▗▙▞▀▘  ▝  ▘ ▀▄  ▘  ▗▘         ▖  ▘  │ +│█▄▞█▘         ▖   ▀▄▖                 ▖ │ └────────────────────────────────────────┘ \ No newline at end of file diff --git a/test/references/canvas/braille_print.txt b/test/references/canvas/braille_print.txt index 8ac06d48..95b0da75 100644 --- a/test/references/canvas/braille_print.txt +++ b/test/references/canvas/braille_print.txt @@ -1,10 +1,10 @@ -⡗⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠⠀⠀⠀⠀⠀⠀⠀⠀⠈⠀⠀⠀⠀⠁⠀⠀⠂⠀⠀⡀⠀⢈⡠⠔⠊ -⡇⠁⠱⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠⠠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠐⠀⠀⠀⠀⡠⢀⡠⠔⠊⠁⠀⠀⠀ -⡇⠀⠀⠀⠑⢅⠀⠀⠀⠀⠈⡀⠀⠀⠂⡀⠀⠀⠈⠀⠀⠀⢀⠀⠀⠀⠀⠀⢐⡠⠔⠊⠁⠀⠀⡀⠀⠀⠀⢀ -⡏⠀⠀⠀⠉⡉⠙⢍⠍⠉⠹⢉⠒⠒⠒⠒⠒⠒⠒⠒⠮⠤⠤⠤⢤⡤⠴⠮⣁⣀⣀⣀⣀⣀⣀⣄⠀⠐⠂⠀ -⡇⠀⠀⢀⠀⠀⠀⠁⠑⢄⠀⠀⠀⠀⠀⢐⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠈⠀⠀⠀⠁⡀⠀⠀ -⡇⠀⠀⠀⠀⡀⠀⠀⠀⠀⠑⢄⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠄⠀⠀⠀⠀⠐⠀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀ -⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢑⣤⠔⠊⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠀⠀ -⡇⠀⠁⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠑⢄⠀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠠⡀⠀⠀⠀⠀⠀⡀⠀⠐⢀⠀⠀⡀ -⡇⠀⠀⠀⢀⡢⠔⠊⠁⠀⠀⠐⠀⠀⠂⠀⠑⢄⠀⠀⠂⠀⠀⢀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠁⠀⠀ -⣏⡠⠔⡪⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠀⠀⠀⠑⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀ \ No newline at end of file +⡗⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠⠀⠀⠀⠀⠀⠀⠀⠀⠈⠀⠀⠀⠀⠁⠀⠀⠂⠀⠀⡀⠀⢈⡠⠔⠊ +⡇⠁⠱⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠⠠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠐⠀⠀⠀⠀⡠⢀⡠⠔⠊⠁⠀⠀⠀ +⡇⠀⠀⠀⠑⢅⠀⠀⠀⠀⠈⡀⠀⠀⠂⡀⠀⠀⠈⠀⠀⠀⢀⠀⠀⠀⠀⠀⢐⡠⠔⠊⠁⠀⠀⡀⠀⠀⠀⢀ +⡏⠀⠀⠀⠉⡉⠙⢍⠍⠉⠹⢉⠒⠒⠒⠒⠒⠒⠒⠒⠮⠤⠤⠤⢤⡤⠴⠮⣁⣀⣀⣀⣀⣀⣀⣄⠀⠐⠂⠀ +⡇⠀⠀⢀⠀⠀⠀⠁⠑⢄⠀⠀⠀⠀⠀⢐⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠈⠀⠀⠀⠁⡀⠀⠀ +⡇⠀⠀⠀⠀⡀⠀⠀⠀⠀⠑⢄⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠄⠀⠀⠀⠀⠐⠀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀ +⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢑⣤⠔⠊⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠀⠀ +⡇⠀⠁⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠑⢄⠀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠠⡀⠀⠀⠀⠀⠀⡀⠀⠐⢀⠀⠀⡀ +⡇⠀⠀⠀⢀⡢⠔⠊⠁⠀⠀⠐⠀⠀⠂⠀⠑⢄⠀⠀⠂⠀⠀⢀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠁⠀⠀ +⣏⡠⠔⡪⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠀⠀⠀⠑⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀ \ No newline at end of file diff --git a/test/references/canvas/braille_printrow.txt b/test/references/canvas/braille_printrow.txt index 10da69a7..2b5703ac 100644 --- a/test/references/canvas/braille_printrow.txt +++ b/test/references/canvas/braille_printrow.txt @@ -1 +1 @@ -⡇⠀⠀⠀⠑⢅⠀⠀⠀⠀⠈⡀⠀⠀⠂⡀⠀⠀⠈⠀⠀⠀⢀⠀⠀⠀⠀⠀⢐⡠⠔⠊⠁⠀⠀⡀⠀⠀⠀⢀ \ No newline at end of file +⡇⠀⠀⠀⠑⢅⠀⠀⠀⠀⠈⡀⠀⠀⠂⡀⠀⠀⠈⠀⠀⠀⢀⠀⠀⠀⠀⠀⢐⡠⠔⠊⠁⠀⠀⡀⠀⠀⠀⢀ \ No newline at end of file diff --git a/test/references/canvas/braille_show.txt b/test/references/canvas/braille_show.txt index 8dcef1b3..6c442614 100644 --- a/test/references/canvas/braille_show.txt +++ b/test/references/canvas/braille_show.txt @@ -1,12 +1,12 @@ ┌────────────────────────────────────────┐ -│⡗⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠⠀⠀⠀⠀⠀⠀⠀⠀⠈⠀⠀⠀⠀⠁⠀⠀⠂⠀⠀⡀⠀⢈⡠⠔⠊│ -│⡇⠁⠱⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠⠠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠐⠀⠀⠀⠀⡠⢀⡠⠔⠊⠁⠀⠀⠀│ -│⡇⠀⠀⠀⠑⢅⠀⠀⠀⠀⠈⡀⠀⠀⠂⡀⠀⠀⠈⠀⠀⠀⢀⠀⠀⠀⠀⠀⢐⡠⠔⠊⠁⠀⠀⡀⠀⠀⠀⢀│ -│⡏⠀⠀⠀⠉⡉⠙⢍⠍⠉⠹⢉⠒⠒⠒⠒⠒⠒⠒⠒⠮⠤⠤⠤⢤⡤⠴⠮⣁⣀⣀⣀⣀⣀⣀⣄⠀⠐⠂⠀│ -│⡇⠀⠀⢀⠀⠀⠀⠁⠑⢄⠀⠀⠀⠀⠀⢐⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠈⠀⠀⠀⠁⡀⠀⠀│ -│⡇⠀⠀⠀⠀⡀⠀⠀⠀⠀⠑⢄⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠄⠀⠀⠀⠀⠐⠀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀│ -│⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢑⣤⠔⠊⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠀⠀│ -│⡇⠀⠁⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠑⢄⠀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠠⡀⠀⠀⠀⠀⠀⡀⠀⠐⢀⠀⠀⡀│ -│⡇⠀⠀⠀⢀⡢⠔⠊⠁⠀⠀⠐⠀⠀⠂⠀⠑⢄⠀⠀⠂⠀⠀⢀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠁⠀⠀│ -│⣏⡠⠔⡪⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠀⠀⠀⠑⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀│ +│⡗⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠⠀⠀⠀⠀⠀⠀⠀⠀⠈⠀⠀⠀⠀⠁⠀⠀⠂⠀⠀⡀⠀⢈⡠⠔⠊│ +│⡇⠁⠱⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠⠠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠐⠀⠀⠀⠀⡠⢀⡠⠔⠊⠁⠀⠀⠀│ +│⡇⠀⠀⠀⠑⢅⠀⠀⠀⠀⠈⡀⠀⠀⠂⡀⠀⠀⠈⠀⠀⠀⢀⠀⠀⠀⠀⠀⢐⡠⠔⠊⠁⠀⠀⡀⠀⠀⠀⢀│ +│⡏⠀⠀⠀⠉⡉⠙⢍⠍⠉⠹⢉⠒⠒⠒⠒⠒⠒⠒⠒⠮⠤⠤⠤⢤⡤⠴⠮⣁⣀⣀⣀⣀⣀⣀⣄⠀⠐⠂⠀│ +│⡇⠀⠀⢀⠀⠀⠀⠁⠑⢄⠀⠀⠀⠀⠀⢐⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠈⠀⠀⠀⠁⡀⠀⠀│ +│⡇⠀⠀⠀⠀⡀⠀⠀⠀⠀⠑⢄⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠄⠀⠀⠀⠀⠐⠀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀│ +│⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢑⣤⠔⠊⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠀⠀│ +│⡇⠀⠁⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠑⢄⠀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠠⡀⠀⠀⠀⠀⠀⡀⠀⠐⢀⠀⠀⡀│ +│⡇⠀⠀⠀⢀⡢⠔⠊⠁⠀⠀⠐⠀⠀⠂⠀⠑⢄⠀⠀⠂⠀⠀⢀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠁⠀⠀│ +│⣏⡠⠔⡪⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠀⠀⠀⠑⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀│ └────────────────────────────────────────┘ \ No newline at end of file diff --git a/test/references/canvas/color_mixing.txt b/test/references/canvas/color_mixing.txt index 0d92622e..e8c40dfc 100644 --- a/test/references/canvas/color_mixing.txt +++ b/test/references/canvas/color_mixing.txt @@ -1,15 +1,15 @@ -⡏⠉⠉⠉⠉⠉⢹⠉⠉⠉⠉⠉⠉⡏⠉⠉⠉⠉⠉⠉⡏⠉⠉⠉⠉⠉⢹⠉⠉⠉⠉⠉⠉⡏⠉⠉⠉⠉⠉⢹ -⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸ -⡧⠤⠤⠤⠤⠤⢼⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⢼⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⢼ -⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸ -⣇⣀⣀⣀⣀⣀⣸⣀⣀⣀⣀⣀⣀⣇⣀⣀⣀⣀⣀⣀⣇⣀⣀⣀⣀⣀⣸⣀⣀⣀⣀⣀⣀⣇⣀⣀⣀⣀⣀⣸ -⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸ -⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸ -⡧⠤⠤⠤⠤⠤⢼⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⢼⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⢼ -⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸ -⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸ -⡏⠉⠉⠉⠉⠉⢹⠉⠉⠉⠉⠉⠉⡏⠉⠉⠉⠉⠉⠉⡏⠉⠉⠉⠉⠉⢹⠉⠉⠉⠉⠉⠉⡏⠉⠉⠉⠉⠉⢹ -⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸ -⡧⠤⠤⠤⠤⠤⢼⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⢼⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⢼ -⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸ -⣇⣀⣀⣀⣀⣀⣸⣀⣀⣀⣀⣀⣀⣇⣀⣀⣀⣀⣀⣀⣇⣀⣀⣀⣀⣀⣸⣀⣀⣀⣀⣀⣀⣇⣀⣀⣀⣀⣀⣸ \ No newline at end of file +⡏⠉⠉⠉⠉⠉⢹⠉⠉⠉⠉⠉⠉⡏⠉⠉⠉⠉⠉⠉⡏⠉⠉⠉⠉⠉⢹⠉⠉⠉⠉⠉⠉⡏⠉⠉⠉⠉⠉⢹ +⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸ +⡧⠤⠤⠤⠤⠤⢼⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⢼⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⢼ +⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸ +⣇⣀⣀⣀⣀⣀⣸⣀⣀⣀⣀⣀⣀⣇⣀⣀⣀⣀⣀⣀⣇⣀⣀⣀⣀⣀⣸⣀⣀⣀⣀⣀⣀⣇⣀⣀⣀⣀⣀⣸ +⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸ +⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸ +⡧⠤⠤⠤⠤⠤⢼⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⢼⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⢼ +⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸ +⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸ +⡏⠉⠉⠉⠉⠉⢹⠉⠉⠉⠉⠉⠉⡏⠉⠉⠉⠉⠉⠉⡏⠉⠉⠉⠉⠉⢹⠉⠉⠉⠉⠉⠉⡏⠉⠉⠉⠉⠉⢹ +⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸ +⡧⠤⠤⠤⠤⠤⢼⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⢼⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⢼ +⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸ +⣇⣀⣀⣀⣀⣀⣸⣀⣀⣀⣀⣀⣀⣇⣀⣀⣀⣀⣀⣀⣇⣀⣀⣀⣀⣀⣸⣀⣀⣀⣀⣀⣀⣇⣀⣀⣀⣀⣀⣸ \ No newline at end of file diff --git a/test/references/canvas/colors.txt b/test/references/canvas/colors.txt new file mode 100644 index 00000000..9c8c88bf --- /dev/null +++ b/test/references/canvas/colors.txt @@ -0,0 +1,15 @@ +⡏⠉⠉⠉⠉⠉⢹⠉⠉⠉⠉⠉⠉⡏⠉⠉⠉⠉⠉⠉⡏⠉⠉⠉⠉⠉⢹⠉⠉⠉⠉⠉⠉⡏⠉⠉⠉⠉⠉⢹ +⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸ +⡧⠤⠤⠤⠤⠤⢼⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⢼⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⢼ +⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸ +⣇⣀⣀⣀⣀⣀⣸⣀⣀⣀⣀⣀⣀⣇⣀⣀⣀⣀⣀⣀⣇⣀⣀⣀⣀⣀⣸⣀⣀⣀⣀⣀⣀⣇⣀⣀⣀⣀⣀⣸ +⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸ +⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸ +⡧⠤⠤⠤⠤⠤⢼⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⢼⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⢼ +⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸ +⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸ +⡏⠉⠉⠉⠉⠉⢹⠉⠉⠉⠉⠉⠉⡏⠉⠉⠉⠉⠉⠉⡏⠉⠉⠉⠉⠉⢹⠉⠉⠉⠉⠉⠉⡏⠉⠉⠉⠉⠉⢹ +⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸ +⡧⠤⠤⠤⠤⠤⢼⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⢼⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⢼ +⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢸ +⣇⣀⣀⣀⣀⣀⣸⣀⣀⣀⣀⣀⣀⣇⣀⣀⣀⣀⣀⣀⣇⣀⣀⣀⣀⣀⣸⣀⣀⣀⣀⣀⣀⣇⣀⣀⣀⣀⣀⣸ \ No newline at end of file diff --git a/test/references/canvas/density_print.txt b/test/references/canvas/density_print.txt index 2443ffd3..a965297a 100644 --- a/test/references/canvas/density_print.txt +++ b/test/references/canvas/density_print.txt @@ -1,10 +1,10 @@ -▒░            ░        ░    ░  ░  ░ ░░░▓ -░ ░░          ░░          ░    ░ ░░░░   -░ ░ ░░    ░░  ░░  ░   ░     ░░░░░  ░   ░ -▒   ░░░░░░▒░░░░░░░░░▒░░░░▒▒▒▒░░░░░░░ ░░ -░  ░   ░░░     ░     ░░░░       ░   ░░  -░    ░    ░░     ░░░░ ░    ░     ░      -▒           ░▓░░▒                    ░  -▒ ░      ░▒░░ ░░ ░        ░░     ░ ░░  ░ -░    ▒░░░  ░  ░ ░░  ░  ░░         ░  ░  -█░░▓░         ░   ░░░                 ░ \ No newline at end of file +▒░            ░        ░    ░  ░  ░ ░░░▓ +░ ░░          ░░          ░    ░ ░░░░   +░ ░ ░░    ░░  ░░  ░   ░     ░░░░░  ░   ░ +▒   ░░░░░░▒░░░░░░░░░▒░░░░▒▒▒▒░░░░░░░ ░░ +░  ░   ░░░     ░     ░░░░       ░   ░░  +░    ░    ░░     ░░░░ ░    ░     ░      +▒           ░▓░░▒                    ░  +▒ ░      ░▒░░ ░░ ░        ░░     ░ ░░  ░ +░    ▒░░░  ░  ░ ░░  ░  ░░         ░  ░  +█░░▓░         ░   ░░░                 ░ \ No newline at end of file diff --git a/test/references/canvas/density_printrow.txt b/test/references/canvas/density_printrow.txt index d65bc835..3941bfb1 100644 --- a/test/references/canvas/density_printrow.txt +++ b/test/references/canvas/density_printrow.txt @@ -1 +1 @@ -░ ░ ░░    ░░  ░░  ░   ░     ░░░░░  ░   ░ \ No newline at end of file +░ ░ ░░    ░░  ░░  ░   ░     ░░░░░  ░   ░ \ No newline at end of file diff --git a/test/references/canvas/density_show.txt b/test/references/canvas/density_show.txt index eb2d60f2..f87abc22 100644 --- a/test/references/canvas/density_show.txt +++ b/test/references/canvas/density_show.txt @@ -1,12 +1,12 @@ ┌────────────────────────────────────────┐ -│▒░            ░        ░    ░  ░  ░ ░░░▓│ -│░ ░░          ░░          ░    ░ ░░░░   │ -│░ ░ ░░    ░░  ░░  ░   ░     ░░░░░  ░   ░│ -│▒   ░░░░░░▒░░░░░░░░░▒░░░░▒▒▒▒░░░░░░░ ░░ │ -│░  ░   ░░░     ░     ░░░░       ░   ░░  │ -│░    ░    ░░     ░░░░ ░    ░     ░      │ -│▒           ░▓░░▒                    ░  │ -│▒ ░      ░▒░░ ░░ ░        ░░     ░ ░░  ░│ -│░    ▒░░░  ░  ░ ░░  ░  ░░         ░  ░  │ -│█░░▓░         ░   ░░░                 ░ │ +│▒░            ░        ░    ░  ░  ░ ░░░▓│ +│░ ░░          ░░          ░    ░ ░░░░   │ +│░ ░ ░░    ░░  ░░  ░   ░     ░░░░░  ░   ░│ +│▒   ░░░░░░▒░░░░░░░░░▒░░░░▒▒▒▒░░░░░░░ ░░ │ +│░  ░   ░░░     ░     ░░░░       ░   ░░  │ +│░    ░    ░░     ░░░░ ░    ░     ░      │ +│▒           ░▓░░▒                    ░  │ +│▒ ░      ░▒░░ ░░ ░        ░░     ░ ░░  ░│ +│░    ▒░░░  ░  ░ ░░  ░  ░░         ░  ░  │ +│█░░▓░         ░   ░░░                 ░ │ └────────────────────────────────────────┘ \ No newline at end of file diff --git a/test/references/canvas/dot_print.txt b/test/references/canvas/dot_print.txt index f7ef54ab..7de384b5 100644 --- a/test/references/canvas/dot_print.txt +++ b/test/references/canvas/dot_print.txt @@ -1,10 +1,10 @@ -:.            .        '    '  '  . '..' -: :.          ..          '    . ..''   -: ' ':    '.  '.  '   .     '..''  .   . -:   ':'::'::'''''''':......::....... '' -:  .   ''.     :     ..''       '   '.  -:    .    '.     ..'' .    '     '      -:           '..''                    .  -: '      .:'' '. '        ..     . '.  . -:    :.''  '  ' '.  '  .'         .  '  -:..:'         .   '..                 . \ No newline at end of file +:.            .        '    '  '  . '..' +: :.          ..          '    . ..''   +: ' ':    '.  '.  '   .     '..''  .   . +:   ':'::'::'''''''':......::....... '' +:  .   ''.     :     ..''       '   '.  +:    .    '.     ..'' .    '     '      +:           '..''                    .  +: '      .:'' '. '        ..     . '.  . +:    :.''  '  ' '.  '  .'         .  '  +:..:'         .   '..                 . \ No newline at end of file diff --git a/test/references/canvas/dot_printrow.txt b/test/references/canvas/dot_printrow.txt index 7a684e97..52cc5d67 100644 --- a/test/references/canvas/dot_printrow.txt +++ b/test/references/canvas/dot_printrow.txt @@ -1 +1 @@ -: ' ':    '.  '.  '   .     '..''  .   . \ No newline at end of file +: ' ':    '.  '.  '   .     '..''  .   . \ No newline at end of file diff --git a/test/references/canvas/dot_show.txt b/test/references/canvas/dot_show.txt index 1e7f260f..6b28fbc7 100644 --- a/test/references/canvas/dot_show.txt +++ b/test/references/canvas/dot_show.txt @@ -1,12 +1,12 @@ ┌────────────────────────────────────────┐ -│:.            .        '    '  '  . '..'│ -│: :.          ..          '    . ..''   │ -│: ' ':    '.  '.  '   .     '..''  .   .│ -│:   ':'::'::'''''''':......::....... '' │ -│:  .   ''.     :     ..''       '   '.  │ -│:    .    '.     ..'' .    '     '      │ -│:           '..''                    .  │ -│: '      .:'' '. '        ..     . '.  .│ -│:    :.''  '  ' '.  '  .'         .  '  │ -│:..:'         .   '..                 . │ +│:.            .        '    '  '  . '..'│ +│: :.          ..          '    . ..''   │ +│: ' ':    '.  '.  '   .     '..''  .   .│ +│:   ':'::'::'''''''':......::....... '' │ +│:  .   ''.     :     ..''       '   '.  │ +│:    .    '.     ..'' .    '     '      │ +│:           '..''                    .  │ +│: '      .:'' '. '        ..     . '.  .│ +│:    :.''  '  ' '.  '  .'         .  '  │ +│:..:'         .   '..                 . │ └────────────────────────────────────────┘ \ No newline at end of file diff --git a/test/references/canvas/heatmap_print.txt b/test/references/canvas/heatmap_print.txt index fa8934d7..419f14ba 100644 --- a/test/references/canvas/heatmap_print.txt +++ b/test/references/canvas/heatmap_print.txt @@ -1,5 +1,5 @@ -▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ -▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ -▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ -▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ -▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ \ No newline at end of file +▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ +▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ +▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ +▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ +▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ \ No newline at end of file diff --git a/test/references/canvas/heatmap_printrow.txt b/test/references/canvas/heatmap_printrow.txt index 71defae6..ca8dae60 100644 --- a/test/references/canvas/heatmap_printrow.txt +++ b/test/references/canvas/heatmap_printrow.txt @@ -1 +1 @@ -▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ \ No newline at end of file +▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ \ No newline at end of file diff --git a/test/references/canvas/heatmap_show.txt b/test/references/canvas/heatmap_show.txt index 923a6d4a..edc3ab95 100644 --- a/test/references/canvas/heatmap_show.txt +++ b/test/references/canvas/heatmap_show.txt @@ -1,7 +1,7 @@ ┌────────────────────────────────────────┐ -│▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ -│▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ -│▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ -│▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ -│▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ +│▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ +│▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ +│▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ +│▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ +│▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └────────────────────────────────────────┘ \ No newline at end of file diff --git a/test/references/graphics/bar_addrow_scalar.txt b/test/references/graphics/bar_addrow_scalar.txt index 55b85d8f..a40baa3d 100644 --- a/test/references/graphics/bar_addrow_scalar.txt +++ b/test/references/graphics/bar_addrow_scalar.txt @@ -1,9 +1,9 @@ ┌──────────────────────────────┐ │ 0 │ -│■■■■■ 2 │ -│■■■■■■■■■■ 4 │ -│■■■■■■■■■■■■■■■■ 6 │ -│■■■■■■■■■■■■■■■■■■■■■ 8 │ -│■■■■■■■■■■■■■■■■■■■■■■■■■■ 10 │ -│■■■■■■■■ 3 │ +│■■■■■ 2 │ +│■■■■■■■■■■ 4 │ +│■■■■■■■■■■■■■■■■ 6 │ +│■■■■■■■■■■■■■■■■■■■■■ 8 │ +│■■■■■■■■■■■■■■■■■■■■■■■■■■ 10 │ +│■■■■■■■■ 3 │ └──────────────────────────────┘ \ No newline at end of file diff --git a/test/references/graphics/bar_addrow_vector.txt b/test/references/graphics/bar_addrow_vector.txt index f3d9b711..515c249f 100644 --- a/test/references/graphics/bar_addrow_vector.txt +++ b/test/references/graphics/bar_addrow_vector.txt @@ -1,11 +1,11 @@ ┌──────────────────────────────┐ │ 0 │ -│■ 2 │ -│■■ 4 │ -│■■■ 6 │ -│■■■■ 8 │ -│■■■■■ 10 │ -│■■ 3 │ -│■■■■■■■■■■■■■■■■■■■■■■■■■■ 50 │ -│■■■■ 7 │ +│■ 2 │ +│■■ 4 │ +│■■■ 6 │ +│■■■■ 8 │ +│■■■■■ 10 │ +│■■ 3 │ +│■■■■■■■■■■■■■■■■■■■■■■■■■■ 50 │ +│■■■■ 7 │ └──────────────────────────────┘ \ No newline at end of file diff --git a/test/references/graphics/bar_blue.txt b/test/references/graphics/bar_blue.txt index 3b9ccf85..b789b389 100644 --- a/test/references/graphics/bar_blue.txt +++ b/test/references/graphics/bar_blue.txt @@ -1,4 +1,4 @@ ┌────────────────────┐ -│■■■■■■■■■■■■■■■■■ 1 │ -│■■■■■■■■■■■■■■■■■ 1 │ +│■■■■■■■■■■■■■■■■■ 1 │ +│■■■■■■■■■■■■■■■■■ 1 │ └────────────────────┘ \ No newline at end of file diff --git a/test/references/graphics/bar_log10.txt b/test/references/graphics/bar_log10.txt index 58a48df8..48038797 100644 --- a/test/references/graphics/bar_log10.txt +++ b/test/references/graphics/bar_log10.txt @@ -1,7 +1,7 @@ ┌────────────────────┐ │ 0 │ │ 1 │ -│■■■■■ 10 │ -│■■■■■■■■■ 100 │ -│■■■■■■■■■■■■■■ 1000 │ +│■■■■■ 10 │ +│■■■■■■■■■ 100 │ +│■■■■■■■■■■■■■■ 1000 │ └────────────────────┘ \ No newline at end of file diff --git a/test/references/graphics/bar_print.txt b/test/references/graphics/bar_print.txt index e396ab24..adc41d0d 100644 --- a/test/references/graphics/bar_print.txt +++ b/test/references/graphics/bar_print.txt @@ -1,6 +1,6 @@  0 -■■■■■ 2 -■■■■■■■■■■ 4 -■■■■■■■■■■■■■■■■ 6 -■■■■■■■■■■■■■■■■■■■■■ 8 -■■■■■■■■■■■■■■■■■■■■■■■■■■ 10 \ No newline at end of file +■■■■■ 2 +■■■■■■■■■■ 4 +■■■■■■■■■■■■■■■■ 6 +■■■■■■■■■■■■■■■■■■■■■ 8 +■■■■■■■■■■■■■■■■■■■■■■■■■■ 10 \ No newline at end of file diff --git a/test/references/graphics/bar_printrow.txt b/test/references/graphics/bar_printrow.txt index 917ca5e4..4c02c4a5 100644 --- a/test/references/graphics/bar_printrow.txt +++ b/test/references/graphics/bar_printrow.txt @@ -1 +1 @@ -■■■■■■■■■■ 4 \ No newline at end of file +■■■■■■■■■■ 4 \ No newline at end of file diff --git a/test/references/graphics/bar_short.txt b/test/references/graphics/bar_short.txt index 26b2ffda..b902d0b9 100644 --- a/test/references/graphics/bar_short.txt +++ b/test/references/graphics/bar_short.txt @@ -1,5 +1,5 @@ ┌──────────┐ │ 0 │ -│■ 1 │ -│■■■■■■■ 9 │ +│■ 1 │ +│■■■■■■■ 9 │ └──────────┘ \ No newline at end of file diff --git a/test/references/graphics/bar_short2.txt b/test/references/graphics/bar_short2.txt index c84507ee..797d1b61 100644 --- a/test/references/graphics/bar_short2.txt +++ b/test/references/graphics/bar_short2.txt @@ -1,5 +1,5 @@ ┌───────────────┐ │ 0 │ │ 1 │ -│■■■■■ 10000000 │ +│■■■■■ 10000000 │ └───────────────┘ \ No newline at end of file diff --git a/test/references/graphics/bar_show.txt b/test/references/graphics/bar_show.txt index 81ec05f7..31a4522e 100644 --- a/test/references/graphics/bar_show.txt +++ b/test/references/graphics/bar_show.txt @@ -1,8 +1,8 @@ ┌──────────────────────────────┐ │ 0 │ -│■■■■■ 2 │ -│■■■■■■■■■■ 4 │ -│■■■■■■■■■■■■■■■■ 6 │ -│■■■■■■■■■■■■■■■■■■■■■ 8 │ -│■■■■■■■■■■■■■■■■■■■■■■■■■■ 10 │ +│■■■■■ 2 │ +│■■■■■■■■■■ 4 │ +│■■■■■■■■■■■■■■■■ 6 │ +│■■■■■■■■■■■■■■■■■■■■■ 8 │ +│■■■■■■■■■■■■■■■■■■■■■■■■■■ 10 │ └──────────────────────────────┘ \ No newline at end of file diff --git a/test/references/graphics/bar_symb.txt b/test/references/graphics/bar_symb.txt index aab03cf6..69ec8fb8 100644 --- a/test/references/graphics/bar_symb.txt +++ b/test/references/graphics/bar_symb.txt @@ -1,5 +1,5 @@ ┌────────────────────┐ │ 0 │ -│## 1 │ -│################ 10 │ +│## 1 │ +│################ 10 │ └────────────────────┘ \ No newline at end of file diff --git a/test/references/graphics/box_addseries.txt b/test/references/graphics/box_addseries.txt index 3693696d..13470e65 100644 --- a/test/references/graphics/box_addseries.txt +++ b/test/references/graphics/box_addseries.txt @@ -1,8 +1,8 @@ ┌──────────────────────────────┐ -│ ╷ ┌────┬────────┐ ╷│ -│ ├────┤ │ ├─────┤│ -│ ╵ └────┴────────┘ ╵│ -│╷ ┌─────┬──┐ ╷ │ -│├────┤ │ ├────┤ │ -│╵ └─────┴──┘ ╵ │ +│ ╷ ┌────┬────────┐ ╷│ +│ ├────┤ │ ├─────┤│ +│ ╵ └────┴────────┘ ╵│ +│╷ ┌─────┬──┐ ╷ │ +│├────┤ │ ├────┤ │ +│╵ └─────┴──┘ ╵ │ └──────────────────────────────┘ \ No newline at end of file diff --git a/test/references/graphics/box_addseries_small.txt b/test/references/graphics/box_addseries_small.txt index 31e9e413..e7c5bf0a 100644 --- a/test/references/graphics/box_addseries_small.txt +++ b/test/references/graphics/box_addseries_small.txt @@ -1,11 +1,11 @@ ┌──────────────────────────────┐ -│ ╷ ┌────┬────────┐ ╷│ -│ ├────┤ │ ├─────┤│ -│ ╵ └────┴────────┘ ╵│ -│╷ ┌─────┬──┐ ╷ │ -│├────┤ │ ├────┤ │ -│╵ └─────┴──┘ ╵ │ -│ ╷ │ -│ ┤ │ -│ ╵ │ +│ ╷ ┌────┬────────┐ ╷│ +│ ├────┤ │ ├─────┤│ +│ ╵ └────┴────────┘ ╵│ +│╷ ┌─────┬──┐ ╷ │ +│├────┤ │ ├────┤ │ +│╵ └─────┴──┘ ╵ │ +│ ╷ │ +│ ┤ │ +│ ╵ │ └──────────────────────────────┘ \ No newline at end of file diff --git a/test/references/graphics/box_blue.txt b/test/references/graphics/box_blue.txt index e972fa74..ace200e4 100644 --- a/test/references/graphics/box_blue.txt +++ b/test/references/graphics/box_blue.txt @@ -1,5 +1,5 @@ ┌────────────────────┐ -│╷ ┌────┬────┐ ╷│ -│├───┤ │ ├────┤│ -│╵ └────┴────┘ ╵│ +│╷ ┌────┬────┐ ╷│ +│├───┤ │ ├────┤│ +│╵ └────┴────┘ ╵│ └────────────────────┘ \ No newline at end of file diff --git a/test/references/graphics/box_empty.txt b/test/references/graphics/box_empty.txt index 3cb0ab1d..00076342 100644 --- a/test/references/graphics/box_empty.txt +++ b/test/references/graphics/box_empty.txt @@ -1,5 +1,5 @@ ┌────────────────────┐ -│ ╷ │ -│ ┤ │ -│ ╵ │ +│ ╷ │ +│ ┤ │ +│ ╵ │ └────────────────────┘ \ No newline at end of file diff --git a/test/references/graphics/box_minmax1.txt b/test/references/graphics/box_minmax1.txt index c59d33eb..a44ec969 100644 --- a/test/references/graphics/box_minmax1.txt +++ b/test/references/graphics/box_minmax1.txt @@ -1,5 +1,5 @@ ┌──────────────────────────────┐ -│┌───┬────────┐ ╷ │ -│┤ │ ├─────┤ │ -│└───┴────────┘ ╵ │ +│┌───┬────────┐ ╷ │ +│┤ │ ├─────┤ │ +│└───┴────────┘ ╵ │ └──────────────────────────────┘ \ No newline at end of file diff --git a/test/references/graphics/box_minmax2.txt b/test/references/graphics/box_minmax2.txt index 8ff0f266..4d5a8fea 100644 --- a/test/references/graphics/box_minmax2.txt +++ b/test/references/graphics/box_minmax2.txt @@ -1,5 +1,5 @@ ┌──────────────────────────────┐ -│ ╷ ┌───┬──────┐ ╷ │ -│ ├────┤ │ ├─────┤ │ -│ ╵ └───┴──────┘ ╵ │ +│ ╷ ┌───┬──────┐ ╷ │ +│ ├────┤ │ ├─────┤ │ +│ ╵ └───┴──────┘ ╵ │ └──────────────────────────────┘ \ No newline at end of file diff --git a/test/references/graphics/box_print.txt b/test/references/graphics/box_print.txt index d49978e6..512f748e 100644 --- a/test/references/graphics/box_print.txt +++ b/test/references/graphics/box_print.txt @@ -1,3 +1,3 @@ -╷ ┌─────┬─────────┐ ╷ -├────┤ │ ├───────┤ -╵ └─────┴─────────┘ ╵ \ No newline at end of file +╷ ┌─────┬─────────┐ ╷ +├────┤ │ ├───────┤ +╵ └─────┴─────────┘ ╵ \ No newline at end of file diff --git a/test/references/graphics/box_printrow.txt b/test/references/graphics/box_printrow.txt index 7fe28fe2..0f033887 100644 --- a/test/references/graphics/box_printrow.txt +++ b/test/references/graphics/box_printrow.txt @@ -1 +1 @@ -╵ └─────┴─────────┘ ╵ \ No newline at end of file +╵ └─────┴─────────┘ ╵ \ No newline at end of file diff --git a/test/references/graphics/box_short.txt b/test/references/graphics/box_short.txt index a3436af9..131e9ff6 100644 --- a/test/references/graphics/box_short.txt +++ b/test/references/graphics/box_short.txt @@ -1,5 +1,5 @@ ┌──────────┐ -│┬────┐ ╷│ -││ ├───┤│ -│┴────┘ ╵│ +│┬────┐ ╷│ +││ ├───┤│ +│┴────┘ ╵│ └──────────┘ \ No newline at end of file diff --git a/test/references/graphics/box_show.txt b/test/references/graphics/box_show.txt index eb30d08e..d3715710 100644 --- a/test/references/graphics/box_show.txt +++ b/test/references/graphics/box_show.txt @@ -1,5 +1,5 @@ ┌──────────────────────────────┐ -│╷ ┌─────┬─────────┐ ╷│ -│├────┤ │ ├───────┤│ -│╵ └─────┴─────────┘ ╵│ +│╷ ┌─────┬─────────┐ ╷│ +│├────┤ │ ├───────┤│ +│╵ └─────┴─────────┘ ╵│ └──────────────────────────────┘ \ No newline at end of file diff --git a/test/references/heatmap/colormap_31x31_inferno.txt b/test/references/heatmap/colormap_31x31_inferno.txt index 0e7ccb97..bb9147bb 100644 --- a/test/references/heatmap/colormap_31x31_inferno.txt +++ b/test/references/heatmap/colormap_31x31_inferno.txt @@ -1,5 +1,5 @@  ┌───────────────────────────────┐ - 31 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 900 + 31 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 900  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ @@ -10,6 +10,6 @@  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ - 1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0 + 1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0  └───────────────────────────────┘  1  31 \ No newline at end of file diff --git a/test/references/heatmap/colormap_31x31_magma.txt b/test/references/heatmap/colormap_31x31_magma.txt index e82f58b1..b2917bf3 100644 --- a/test/references/heatmap/colormap_31x31_magma.txt +++ b/test/references/heatmap/colormap_31x31_magma.txt @@ -1,5 +1,5 @@  ┌───────────────────────────────┐ - 31 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 900 + 31 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 900  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ @@ -10,6 +10,6 @@  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ - 1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0 + 1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0  └───────────────────────────────┘  1  31 \ No newline at end of file diff --git a/test/references/heatmap/colormap_31x31_plasma.txt b/test/references/heatmap/colormap_31x31_plasma.txt index 1c4167e8..866a3b01 100644 --- a/test/references/heatmap/colormap_31x31_plasma.txt +++ b/test/references/heatmap/colormap_31x31_plasma.txt @@ -1,5 +1,5 @@  ┌───────────────────────────────┐ - 31 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 900 + 31 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 900  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ @@ -10,6 +10,6 @@  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ - 1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0 + 1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0  └───────────────────────────────┘  1  31 \ No newline at end of file diff --git a/test/references/heatmap/colormap_31x31_reverse_viridis.txt b/test/references/heatmap/colormap_31x31_reverse_viridis.txt index 38174ec1..51ba4630 100644 --- a/test/references/heatmap/colormap_31x31_reverse_viridis.txt +++ b/test/references/heatmap/colormap_31x31_reverse_viridis.txt @@ -1,5 +1,5 @@  ┌───────────────────────────────┐ - 31 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 900 + 31 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 900  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ @@ -10,6 +10,6 @@  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ - 1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0 + 1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0  └───────────────────────────────┘  1  31 \ No newline at end of file diff --git a/test/references/heatmap/colormap_31x31_viridis.txt b/test/references/heatmap/colormap_31x31_viridis.txt index 0b784361..284a521c 100644 --- a/test/references/heatmap/colormap_31x31_viridis.txt +++ b/test/references/heatmap/colormap_31x31_viridis.txt @@ -1,5 +1,5 @@  ┌───────────────────────────────┐ - 31 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 900 + 31 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 900  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ @@ -10,6 +10,6 @@  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ - 1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0 + 1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0  └───────────────────────────────┘  1  31 \ No newline at end of file diff --git a/test/references/heatmap/default_10x10.txt b/test/references/heatmap/default_10x10.txt index f83de99c..ecb08920 100644 --- a/test/references/heatmap/default_10x10.txt +++ b/test/references/heatmap/default_10x10.txt @@ -1,8 +1,8 @@  ┌──────────┐ - 10 │▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 3.0 + 10 │▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 3.0  │▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄│ │▄▄│ - 1 │▄▄▄▄▄▄▄▄▄▄│ └──┘ -2.0 + 1 │▄▄▄▄▄▄▄▄▄▄│ └──┘ -2.0  └──────────┘  1  10 \ No newline at end of file diff --git a/test/references/heatmap/default_10x15.txt b/test/references/heatmap/default_10x15.txt index 53014e1f..20b22112 100644 --- a/test/references/heatmap/default_10x15.txt +++ b/test/references/heatmap/default_10x15.txt @@ -1,8 +1,8 @@  ┌───────────────┐ - 10 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 3.0 + 10 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 3.0  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ - 1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ -2.0 + 1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ -2.0  └───────────────┘  1  15 \ No newline at end of file diff --git a/test/references/heatmap/default_15x10.txt b/test/references/heatmap/default_15x10.txt index 8170aed1..87aa1c19 100644 --- a/test/references/heatmap/default_15x10.txt +++ b/test/references/heatmap/default_15x10.txt @@ -1,11 +1,11 @@  ┌──────────┐ - 15 │▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 3.0 + 15 │▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 3.0  │▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄│ │▄▄│ - 1 │▄▄▄▄▄▄▄▄▄▄│ └──┘ -2.0 + 1 │▄▄▄▄▄▄▄▄▄▄│ └──┘ -2.0  └──────────┘  1  10 \ No newline at end of file diff --git a/test/references/heatmap/default_2000x200.txt b/test/references/heatmap/default_2000x200.txt index f3785e1c..30ab98a1 100644 --- a/test/references/heatmap/default_2000x200.txt +++ b/test/references/heatmap/default_2000x200.txt @@ -1,5 +1,5 @@  ┌─────┐ - 2000 │▄▄▄▄▄│ ┌──┐ 4.0 + 2000 │▄▄▄▄▄│ ┌──┐ 4.0  │▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄│ │▄▄│ @@ -10,6 +10,6 @@  │▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄│ │▄▄│ - 1 │▄▄▄▄▄│ └──┘ -5.0 + 1 │▄▄▄▄▄│ └──┘ -5.0  └─────┘  1  200 \ No newline at end of file diff --git a/test/references/heatmap/default_2000x2000.txt b/test/references/heatmap/default_2000x2000.txt index b53057e6..79745227 100644 --- a/test/references/heatmap/default_2000x2000.txt +++ b/test/references/heatmap/default_2000x2000.txt @@ -1,5 +1,5 @@  ┌────────────────────────────────────────────────┐ - 2000 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 5.0 + 2000 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 5.0  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ @@ -10,6 +10,6 @@  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ - 1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ -5.0 + 1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ -5.0  └────────────────────────────────────────────────┘  1  2000 \ No newline at end of file diff --git a/test/references/heatmap/default_200x2000.txt b/test/references/heatmap/default_200x2000.txt index 51c7e295..99ff7644 100644 --- a/test/references/heatmap/default_200x2000.txt +++ b/test/references/heatmap/default_200x2000.txt @@ -1,5 +1,5 @@  ┌────────────────────────────────────────────────────────────────────────┐ - 200 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 4.0 + 200 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 4.0  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ @@ -10,6 +10,6 @@  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ - 1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ -5.0 + 1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ -5.0  └────────────────────────────────────────────────────────────────────────┘  1  2000 \ No newline at end of file diff --git a/test/references/heatmap/default_8x6.txt b/test/references/heatmap/default_8x6.txt index a66957ff..bb27de3c 100644 --- a/test/references/heatmap/default_8x6.txt +++ b/test/references/heatmap/default_8x6.txt @@ -1,7 +1,7 @@  ┌──────┐ - 8 │▄▄▄▄▄▄│ ┌──┐ 2.0 + 8 │▄▄▄▄▄▄│ ┌──┐ 2.0  │▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄│ │▄▄│ - 1 │▄▄▄▄▄▄│ └──┘ -2.0 + 1 │▄▄▄▄▄▄│ └──┘ -2.0  └──────┘  1  6 \ No newline at end of file diff --git a/test/references/heatmap/default_9x4.txt b/test/references/heatmap/default_9x4.txt index dcce6cc7..56958415 100644 --- a/test/references/heatmap/default_9x4.txt +++ b/test/references/heatmap/default_9x4.txt @@ -1,8 +1,8 @@  ┌────┐ - 9 │▄▄▄▄│ ┌──┐ 2.0 + 9 │▄▄▄▄│ ┌──┐ 2.0  │▄▄▄▄│ │▄▄│  │▄▄▄▄│ │▄▄│  │▄▄▄▄│ │▄▄│ - 1 │▄▄▄▄│ └──┘ -2.0 + 1 │▄▄▄▄│ └──┘ -2.0  └────┘  1  4 \ No newline at end of file diff --git a/test/references/heatmap/integers_20x20.txt b/test/references/heatmap/integers_20x20.txt index c5f95923..403fa3f1 100644 --- a/test/references/heatmap/integers_20x20.txt +++ b/test/references/heatmap/integers_20x20.txt @@ -1,5 +1,5 @@  ┌────────────────────┐ - 20 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 20 + 20 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 20  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ @@ -8,6 +8,6 @@  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ - 1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 1 + 1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 1  └────────────────────┘  1  20 \ No newline at end of file diff --git a/test/references/heatmap/limits_31x31_xlim_10_20.txt b/test/references/heatmap/limits_31x31_xlim_10_20.txt index 0e517341..47d936f8 100644 --- a/test/references/heatmap/limits_31x31_xlim_10_20.txt +++ b/test/references/heatmap/limits_31x31_xlim_10_20.txt @@ -1,5 +1,5 @@  ┌───────────┐ - 31 │▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 570 + 31 │▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 570  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ @@ -10,6 +10,6 @@  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ - 1 │▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0 + 1 │▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0  └───────────┘  10  20 \ No newline at end of file diff --git a/test/references/heatmap/limits_31x31_xlim_10_20_ylim_10_20.txt b/test/references/heatmap/limits_31x31_xlim_10_20_ylim_10_20.txt index 179dcf80..994555d7 100644 --- a/test/references/heatmap/limits_31x31_xlim_10_20_ylim_10_20.txt +++ b/test/references/heatmap/limits_31x31_xlim_10_20_ylim_10_20.txt @@ -1,9 +1,9 @@  ┌───────────┐ - 20 │▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 361 + 20 │▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 361  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ - 10 │▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 81 + 10 │▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 81  └───────────┘  10  20 \ No newline at end of file diff --git a/test/references/heatmap/limits_31x31_xlim_1_50.txt b/test/references/heatmap/limits_31x31_xlim_1_50.txt index f3cfe604..f05478ae 100644 --- a/test/references/heatmap/limits_31x31_xlim_1_50.txt +++ b/test/references/heatmap/limits_31x31_xlim_1_50.txt @@ -1,5 +1,5 @@  ┌──────────────────────────────────────────────────┐ - 31 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 900 + 31 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 900  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ @@ -10,6 +10,6 @@  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ - 1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0 + 1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0  └──────────────────────────────────────────────────┘  1  50 \ No newline at end of file diff --git a/test/references/heatmap/limits_31x31_xlim_1_50_ylim_1_50.txt b/test/references/heatmap/limits_31x31_xlim_1_50_ylim_1_50.txt index 20b97616..0a65ddd7 100644 --- a/test/references/heatmap/limits_31x31_xlim_1_50_ylim_1_50.txt +++ b/test/references/heatmap/limits_31x31_xlim_1_50_ylim_1_50.txt @@ -1,5 +1,5 @@  ┌────────────────────────────────────────────────┐ - 50 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 900 + 50 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 900  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ @@ -10,6 +10,6 @@  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ - 1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0 + 1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0  └────────────────────────────────────────────────┘  1  50 \ No newline at end of file diff --git a/test/references/heatmap/limits_31x31_xscale_0.01_xlim_0_0.1.txt b/test/references/heatmap/limits_31x31_xscale_0.01_xlim_0_0.1.txt index cf996750..e10dddb5 100644 --- a/test/references/heatmap/limits_31x31_xscale_0.01_xlim_0_0.1.txt +++ b/test/references/heatmap/limits_31x31_xscale_0.01_xlim_0_0.1.txt @@ -1,5 +1,5 @@  ┌───────────┐ - 31 │▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 300 + 31 │▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 300  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ @@ -10,6 +10,6 @@  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ - 1 │▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0 + 1 │▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0  └───────────┘  0  0.1 \ No newline at end of file diff --git a/test/references/heatmap/limits_31x31_xscale_0.01_xlim_0_0.1_yscale_0.01_ylim_0.1_0.2.txt b/test/references/heatmap/limits_31x31_xscale_0.01_xlim_0_0.1_yscale_0.01_ylim_0.1_0.2.txt index 6c686c25..91dc577e 100644 --- a/test/references/heatmap/limits_31x31_xscale_0.01_xlim_0_0.1_yscale_0.01_ylim_0.1_0.2.txt +++ b/test/references/heatmap/limits_31x31_xscale_0.01_xlim_0_0.1_yscale_0.01_ylim_0.1_0.2.txt @@ -1,9 +1,9 @@  ┌───────────┐ - 0.2 │▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 200 + 0.2 │▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 200  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ - 0.1 │▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0 + 0.1 │▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0  └───────────┘  0  0.1 \ No newline at end of file diff --git a/test/references/heatmap/limits_31x31_ylim_10_20.txt b/test/references/heatmap/limits_31x31_ylim_10_20.txt index 35ab109f..b3f92249 100644 --- a/test/references/heatmap/limits_31x31_ylim_10_20.txt +++ b/test/references/heatmap/limits_31x31_ylim_10_20.txt @@ -1,9 +1,9 @@  ┌───────────────────────────────┐ - 20 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 570 + 20 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 570  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ - 10 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0 + 10 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0  └───────────────────────────────┘  1  31 \ No newline at end of file diff --git a/test/references/heatmap/limits_31x31_ylim_1_50.txt b/test/references/heatmap/limits_31x31_ylim_1_50.txt index 940d88c4..27c0371f 100644 --- a/test/references/heatmap/limits_31x31_ylim_1_50.txt +++ b/test/references/heatmap/limits_31x31_ylim_1_50.txt @@ -1,5 +1,5 @@  ┌──────────────────────────────┐ - 50 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 900 + 50 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 900  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ @@ -10,6 +10,6 @@  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ - 1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0 + 1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0  └──────────────────────────────┘  1  31 \ No newline at end of file diff --git a/test/references/heatmap/limits_31x31_yscale_0.01_ylim_0_0.1.txt b/test/references/heatmap/limits_31x31_yscale_0.01_ylim_0_0.1.txt index 5571efd4..60af9104 100644 --- a/test/references/heatmap/limits_31x31_yscale_0.01_ylim_0_0.1.txt +++ b/test/references/heatmap/limits_31x31_yscale_0.01_ylim_0_0.1.txt @@ -1,9 +1,9 @@  ┌───────────────────────────────┐ - 0.1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 300 + 0.1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 300  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ - 0 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0 + 0 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0  └───────────────────────────────┘  1  31 \ No newline at end of file diff --git a/test/references/heatmap/parameters_10x10_xscale_inferno.txt b/test/references/heatmap/parameters_10x10_xscale_inferno.txt index 71e3c48c..b3980e8c 100644 --- a/test/references/heatmap/parameters_10x10_xscale_inferno.txt +++ b/test/references/heatmap/parameters_10x10_xscale_inferno.txt @@ -1,8 +1,8 @@  ┌──────────┐ - 10 │▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 3.0 + 10 │▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 3.0  │▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄│ │▄▄│ - 1 │▄▄▄▄▄▄▄▄▄▄│ └──┘ -2.0 + 1 │▄▄▄▄▄▄▄▄▄▄│ └──┘ -2.0  └──────────┘  0  0.9 \ No newline at end of file diff --git a/test/references/heatmap/parameters_10x10_yscale_inferno.txt b/test/references/heatmap/parameters_10x10_yscale_inferno.txt index d401fa60..571db3b5 100644 --- a/test/references/heatmap/parameters_10x10_yscale_inferno.txt +++ b/test/references/heatmap/parameters_10x10_yscale_inferno.txt @@ -1,8 +1,8 @@  ┌──────────┐ - 9 │▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 3.0 + 9 │▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 3.0  │▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄│ │▄▄│ - 0 │▄▄▄▄▄▄▄▄▄▄│ └──┘ -2.0 + 0 │▄▄▄▄▄▄▄▄▄▄│ └──┘ -2.0  └──────────┘  1  10 \ No newline at end of file diff --git a/test/references/heatmap/parameters_10x11_xscale_inferno.txt b/test/references/heatmap/parameters_10x11_xscale_inferno.txt index faa996f3..7c7ef683 100644 --- a/test/references/heatmap/parameters_10x11_xscale_inferno.txt +++ b/test/references/heatmap/parameters_10x11_xscale_inferno.txt @@ -1,8 +1,8 @@  ┌───────────┐ - 10 │▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 3.0 + 10 │▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 3.0  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ - 1 │▄▄▄▄▄▄▄▄▄▄▄│ └──┘ -2.0 + 1 │▄▄▄▄▄▄▄▄▄▄▄│ └──┘ -2.0  └───────────┘  0  1 \ No newline at end of file diff --git a/test/references/heatmap/parameters_200x200_zlabel_ascii_border.txt b/test/references/heatmap/parameters_200x200_zlabel_ascii_border.txt index 1f2b20ad..26955c8e 100644 --- a/test/references/heatmap/parameters_200x200_zlabel_ascii_border.txt +++ b/test/references/heatmap/parameters_200x200_zlabel_ascii_border.txt @@ -1,6 +1,6 @@  Custom Title  ┌────────────────────────────────────────────────┐ - 200 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ +--+ 4.0 + 200 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ +--+ 4.0  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ |▄▄|  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ |▄▄|  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ |▄▄| @@ -11,6 +11,6 @@  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ |▄▄|  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ |▄▄|  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ |▄▄| - 1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ +--+ -4.0 + 1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ +--+ -4.0  └────────────────────────────────────────────────┘  1  200 \ No newline at end of file diff --git a/test/references/heatmap/scaling_11x11_xscale_0.1.txt b/test/references/heatmap/scaling_11x11_xscale_0.1.txt index 198dacc7..1d2c8ea9 100644 --- a/test/references/heatmap/scaling_11x11_xscale_0.1.txt +++ b/test/references/heatmap/scaling_11x11_xscale_0.1.txt @@ -1,9 +1,9 @@  ┌───────────┐ - 11 │▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 10 + 11 │▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 10  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ - 1 │▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0 + 1 │▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0  └───────────┘  0  1 \ No newline at end of file diff --git a/test/references/heatmap/scaling_11x11_xscale_0.1_xoffset-0.5.txt b/test/references/heatmap/scaling_11x11_xscale_0.1_xoffset-0.5.txt index c9b5ea13..e7f78f4c 100644 --- a/test/references/heatmap/scaling_11x11_xscale_0.1_xoffset-0.5.txt +++ b/test/references/heatmap/scaling_11x11_xscale_0.1_xoffset-0.5.txt @@ -1,9 +1,9 @@  ┌───────────┐ - 11 │▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 10 + 11 │▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 10  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ - 1 │▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0 + 1 │▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0  └───────────┘  -0.5  0.5 \ No newline at end of file diff --git a/test/references/heatmap/scaling_11x11_xscale_0.1_xoffset-0.5_yscale_10_yoffset_-50.txt b/test/references/heatmap/scaling_11x11_xscale_0.1_xoffset-0.5_yscale_10_yoffset_-50.txt index 5d054e2f..e1977374 100644 --- a/test/references/heatmap/scaling_11x11_xscale_0.1_xoffset-0.5_yscale_10_yoffset_-50.txt +++ b/test/references/heatmap/scaling_11x11_xscale_0.1_xoffset-0.5_yscale_10_yoffset_-50.txt @@ -1,9 +1,9 @@  ┌───────────┐ - 50 │▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 10 + 50 │▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 10  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ - -50 │▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0 + -50 │▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0  └───────────┘  -0.5  0.5 \ No newline at end of file diff --git a/test/references/heatmap/scaling_11x11_yscale_0.1.txt b/test/references/heatmap/scaling_11x11_yscale_0.1.txt index 046b9cd4..f555bbe8 100644 --- a/test/references/heatmap/scaling_11x11_yscale_0.1.txt +++ b/test/references/heatmap/scaling_11x11_yscale_0.1.txt @@ -1,9 +1,9 @@  ┌───────────┐ - 1 │▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 10 + 1 │▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 10  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ - 0 │▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0 + 0 │▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0  └───────────┘  1  11 \ No newline at end of file diff --git a/test/references/heatmap/scaling_11x11_yscale_0.1_yoffset-0.5.txt b/test/references/heatmap/scaling_11x11_yscale_0.1_yoffset-0.5.txt index ca2448f1..f7872f73 100644 --- a/test/references/heatmap/scaling_11x11_yscale_0.1_yoffset-0.5.txt +++ b/test/references/heatmap/scaling_11x11_yscale_0.1_yoffset-0.5.txt @@ -1,9 +1,9 @@  ┌───────────┐ - 0.5 │▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 10 + 0.5 │▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 10  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ - -0.5 │▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0 + -0.5 │▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0  └───────────┘  1  11 \ No newline at end of file diff --git a/test/references/heatmap/zeros_20x20.txt b/test/references/heatmap/zeros_20x20.txt index 7647ac24..86e78d9b 100644 --- a/test/references/heatmap/zeros_20x20.txt +++ b/test/references/heatmap/zeros_20x20.txt @@ -1,5 +1,5 @@  ┌────────────────────┐ - 20 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 0.0 + 20 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ ┌──┐ 0.0  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ @@ -8,6 +8,6 @@  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│  │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ │▄▄│ - 1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0.0 + 1 │▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄│ └──┘ 0.0  └────────────────────┘  1  20 \ No newline at end of file diff --git a/test/references/histogram/col1.txt b/test/references/histogram/col1.txt new file mode 100644 index 00000000..5d5c48b1 --- /dev/null +++ b/test/references/histogram/col1.txt @@ -0,0 +1,20 @@ + Gray color + ┌ ┐ + [-4.0, -3.5) ┤ 2   + [-3.5, -3.0) ┤ 14   + [-3.0, -2.5) ┤▇ 39   + [-2.5, -2.0) ┤▇▇▇ 166   + [-2.0, -1.5) ┤▇▇▇▇▇▇▇▇ 445   + [-1.5, -1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 880   + [-1.0, -0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1597   + [-0.5,  0.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1888   + [ 0.0,  0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1889   + [ 0.5,  1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1528   + [ 1.0,  1.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 917   + [ 1.5,  2.0) ┤▇▇▇▇▇▇▇ 407   + [ 2.0,  2.5) ┤▇▇▇ 174   + [ 2.5,  3.0) ┤▇ 42   + [ 3.0,  3.5) ┤ 9   + [ 3.5,  4.0) ┤ 3   + └ ┘ + Frequency \ No newline at end of file diff --git a/test/references/histogram/col2.txt b/test/references/histogram/col2.txt new file mode 100644 index 00000000..8cb652fc --- /dev/null +++ b/test/references/histogram/col2.txt @@ -0,0 +1,20 @@ + Green color + ┌ ┐ + [-4.0, -3.5) ┤ 2   + [-3.5, -3.0) ┤ 14   + [-3.0, -2.5) ┤▇ 39   + [-2.5, -2.0) ┤▇▇▇ 166   + [-2.0, -1.5) ┤▇▇▇▇▇▇▇▇ 445   + [-1.5, -1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 880   + [-1.0, -0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1597   + [-0.5,  0.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1888   + [ 0.0,  0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1889   + [ 0.5,  1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1528   + [ 1.0,  1.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 917   + [ 1.5,  2.0) ┤▇▇▇▇▇▇▇ 407   + [ 2.0,  2.5) ┤▇▇▇ 174   + [ 2.5,  3.0) ┤▇ 42   + [ 3.0,  3.5) ┤ 9   + [ 3.5,  4.0) ┤ 3   + └ ┘ + Frequency \ No newline at end of file diff --git a/test/references/histogram/default.txt b/test/references/histogram/default.txt index 1e202de4..85c47894 100644 --- a/test/references/histogram/default.txt +++ b/test/references/histogram/default.txt @@ -1,18 +1,18 @@  ┌ ┐ [-4.0, -3.5) ┤ 2   [-3.5, -3.0) ┤ 14   - [-3.0, -2.5) ┤▇ 39   - [-2.5, -2.0) ┤▇▇▇ 166   - [-2.0, -1.5) ┤▇▇▇▇▇▇▇▇ 445   - [-1.5, -1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 880   - [-1.0, -0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1597   - [-0.5,  0.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1888   - [ 0.0,  0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1889   - [ 0.5,  1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1528   - [ 1.0,  1.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 917   - [ 1.5,  2.0) ┤▇▇▇▇▇▇▇ 407   - [ 2.0,  2.5) ┤▇▇▇ 174   - [ 2.5,  3.0) ┤▇ 42   + [-3.0, -2.5) ┤▇ 39   + [-2.5, -2.0) ┤▇▇▇ 166   + [-2.0, -1.5) ┤▇▇▇▇▇▇▇▇ 445   + [-1.5, -1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 880   + [-1.0, -0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1597   + [-0.5,  0.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1888   + [ 0.0,  0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1889   + [ 0.5,  1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1528   + [ 1.0,  1.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 917   + [ 1.5,  2.0) ┤▇▇▇▇▇▇▇ 407   + [ 2.0,  2.5) ┤▇▇▇ 174   + [ 2.5,  3.0) ┤▇ 42   [ 3.0,  3.5) ┤ 9   [ 3.5,  4.0) ┤ 3    └ ┘ diff --git a/test/references/histogram/default_1e-2.txt b/test/references/histogram/default_1e-2.txt index f1282f04..722f8c3a 100644 --- a/test/references/histogram/default_1e-2.txt +++ b/test/references/histogram/default_1e-2.txt @@ -1,18 +1,18 @@  ┌ ┐ [-0.04 , -0.035) ┤ 2   [-0.035, -0.03 ) ┤ 14   - [-0.03 , -0.025) ┤▇ 39   - [-0.025, -0.02 ) ┤▇▇▇ 166   - [-0.02 , -0.015) ┤▇▇▇▇▇▇▇▇ 445   - [-0.015, -0.01 ) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 880   - [-0.01 , -0.005) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1597   - [-0.005,  0.0 ) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1888   - [ 0.0 ,  0.005) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1889   - [ 0.005,  0.01 ) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1528   - [ 0.01 ,  0.015) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 917   - [ 0.015,  0.02 ) ┤▇▇▇▇▇▇▇ 407   - [ 0.02 ,  0.025) ┤▇▇▇ 174   - [ 0.025,  0.03 ) ┤▇ 42   + [-0.03 , -0.025) ┤▇ 39   + [-0.025, -0.02 ) ┤▇▇▇ 166   + [-0.02 , -0.015) ┤▇▇▇▇▇▇▇▇ 445   + [-0.015, -0.01 ) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 880   + [-0.01 , -0.005) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1597   + [-0.005,  0.0 ) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1888   + [ 0.0 ,  0.005) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1889   + [ 0.005,  0.01 ) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1528   + [ 0.01 ,  0.015) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 917   + [ 0.015,  0.02 ) ┤▇▇▇▇▇▇▇ 407   + [ 0.02 ,  0.025) ┤▇▇▇ 174   + [ 0.025,  0.03 ) ┤▇ 42   [ 0.03 ,  0.035) ┤ 9   [ 0.035,  0.04 ) ┤ 3    └ ┘ diff --git a/test/references/histogram/default_1e2.txt b/test/references/histogram/default_1e2.txt index f2ad56cc..3b248c61 100644 --- a/test/references/histogram/default_1e2.txt +++ b/test/references/histogram/default_1e2.txt @@ -1,18 +1,18 @@  ┌ ┐ [-400.0, -350.0) ┤ 2   [-350.0, -300.0) ┤ 14   - [-300.0, -250.0) ┤▇ 39   - [-250.0, -200.0) ┤▇▇▇ 166   - [-200.0, -150.0) ┤▇▇▇▇▇▇▇▇ 445   - [-150.0, -100.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 880   - [-100.0,  -50.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1597   - [ -50.0,  0.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1888   - [ 0.0,  50.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1889   - [ 50.0,  100.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1528   - [ 100.0,  150.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 917   - [ 150.0,  200.0) ┤▇▇▇▇▇▇▇ 407   - [ 200.0,  250.0) ┤▇▇▇ 174   - [ 250.0,  300.0) ┤▇ 42   + [-300.0, -250.0) ┤▇ 39   + [-250.0, -200.0) ┤▇▇▇ 166   + [-200.0, -150.0) ┤▇▇▇▇▇▇▇▇ 445   + [-150.0, -100.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 880   + [-100.0,  -50.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1597   + [ -50.0,  0.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1888   + [ 0.0,  50.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1889   + [ 50.0,  100.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1528   + [ 100.0,  150.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 917   + [ 150.0,  200.0) ┤▇▇▇▇▇▇▇ 407   + [ 200.0,  250.0) ┤▇▇▇ 174   + [ 250.0,  300.0) ┤▇ 42   [ 300.0,  350.0) ┤ 9   [ 350.0,  400.0) ┤ 3    └ ┘ diff --git a/test/references/histogram/float32.txt b/test/references/histogram/float32.txt index dd037298..a05eac26 100644 --- a/test/references/histogram/float32.txt +++ b/test/references/histogram/float32.txt @@ -1,6 +1,6 @@  ┌ ┐ - [0.0 , 0.05) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1   + [0.0 , 0.05) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1   [0.05, 0.1 ) ┤ 0   - [0.1 , 0.15) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 2   + [0.1 , 0.15) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 2    └ ┘  Frequency \ No newline at end of file diff --git a/test/references/histogram/hist_params.txt b/test/references/histogram/hist_params.txt index bebf75fc..2006fd38 100644 --- a/test/references/histogram/hist_params.txt +++ b/test/references/histogram/hist_params.txt @@ -1,7 +1,7 @@  ┌ ┐ - (-4.0, -2.0] ┤▇▇ 221   - (-2.0,  0.0] ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 4810   - ( 0.0,  2.0] ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 4741   - ( 2.0,  4.0] ┤▇▇ 228   + (-4.0, -2.0] ┤▇▇ 221   + (-2.0,  0.0] ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 4810   + ( 0.0,  2.0] ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 4741   + ( 2.0,  4.0] ┤▇▇ 228    └ ┘  Frequency \ No newline at end of file diff --git a/test/references/histogram/log10.txt b/test/references/histogram/log10.txt index 1c5efb94..ffb906be 100644 --- a/test/references/histogram/log10.txt +++ b/test/references/histogram/log10.txt @@ -1,19 +1,19 @@  ┌ ┐ - [-4.0, -3.5) ┤▇▇▇ 2   - [-3.5, -3.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇ 14   - [-3.0, -2.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 39   - [-2.5, -2.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 166   - [-2.0, -1.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 445   - [-1.5, -1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 880   - [-1.0, -0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1597   - [-0.5,  0.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1888   - [ 0.0,  0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1889   - [ 0.5,  1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1528   - [ 1.0,  1.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 917   - [ 1.5,  2.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 407   - [ 2.0,  2.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 174   - [ 2.5,  3.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 42   - [ 3.0,  3.5) ┤▇▇▇▇▇▇▇▇▇▇ 9   - [ 3.5,  4.0) ┤▇▇▇▇▇ 3   + [-4.0, -3.5) ┤▇▇▇ 2   + [-3.5, -3.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇ 14   + [-3.0, -2.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 39   + [-2.5, -2.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 166   + [-2.0, -1.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 445   + [-1.5, -1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 880   + [-1.0, -0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1597   + [-0.5,  0.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1888   + [ 0.0,  0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1889   + [ 0.5,  1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1528   + [ 1.0,  1.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 917   + [ 1.5,  2.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 407   + [ 2.0,  2.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 174   + [ 2.5,  3.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 42   + [ 3.0,  3.5) ┤▇▇▇▇▇▇▇▇▇▇ 9   + [ 3.5,  4.0) ┤▇▇▇▇▇ 3    └ ┘  Frequency [log10] \ No newline at end of file diff --git a/test/references/histogram/log10_label.txt b/test/references/histogram/log10_label.txt index d47d2ba6..c87aa33c 100644 --- a/test/references/histogram/log10_label.txt +++ b/test/references/histogram/log10_label.txt @@ -1,19 +1,19 @@  ┌ ┐ - [-4.0, -3.5) ┤▇▇▇ 2   - [-3.5, -3.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇ 14   - [-3.0, -2.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 39   - [-2.5, -2.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 166   - [-2.0, -1.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 445   - [-1.5, -1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 880   - [-1.0, -0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1597   - [-0.5,  0.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1888   - [ 0.0,  0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1889   - [ 0.5,  1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1528   - [ 1.0,  1.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 917   - [ 1.5,  2.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 407   - [ 2.0,  2.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 174   - [ 2.5,  3.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 42   - [ 3.0,  3.5) ┤▇▇▇▇▇▇▇▇▇▇ 9   - [ 3.5,  4.0) ┤▇▇▇▇▇ 3   + [-4.0, -3.5) ┤▇▇▇ 2   + [-3.5, -3.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇ 14   + [-3.0, -2.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 39   + [-2.5, -2.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 166   + [-2.0, -1.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 445   + [-1.5, -1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 880   + [-1.0, -0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1597   + [-0.5,  0.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1888   + [ 0.0,  0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1889   + [ 0.5,  1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1528   + [ 1.0,  1.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 917   + [ 1.5,  2.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 407   + [ 2.0,  2.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 174   + [ 2.5,  3.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 42   + [ 3.0,  3.5) ┤▇▇▇▇▇▇▇▇▇▇ 9   + [ 3.5,  4.0) ┤▇▇▇▇▇ 3    └ ┘  custom label \ No newline at end of file diff --git a/test/references/histogram/nonuniformbins.txt b/test/references/histogram/nonuniformbins.txt index 04d53344..463d65d7 100644 --- a/test/references/histogram/nonuniformbins.txt +++ b/test/references/histogram/nonuniformbins.txt @@ -1,7 +1,7 @@  ┌ ┐ - [ 0.0,  0.1) ┤▇▇▇▇▇▇▇▇▇ 1   - [ 0.1,  1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 2   - [ 1.0,  10.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 3   - [ 10.0, 100.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 4   + [ 0.0,  0.1) ┤▇▇▇▇▇▇▇▇▇ 1   + [ 0.1,  1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 2   + [ 1.0,  10.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 3   + [ 10.0, 100.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 4    └ ┘  Frequency \ No newline at end of file diff --git a/test/references/histogram/parameters1.txt b/test/references/histogram/parameters1.txt index 22d01a95..8e07c308 100644 --- a/test/references/histogram/parameters1.txt +++ b/test/references/histogram/parameters1.txt @@ -2,18 +2,18 @@  ┌ ┐ [-4.0, -3.5) ┤ 2   [-3.5, -3.0) ┤ 14   - [-3.0, -2.5) ┤▇ 39   - [-2.5, -2.0) ┤▇▇▇ 166   - [-2.0, -1.5) ┤▇▇▇▇▇▇▇▇ 445   - [-1.5, -1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 880   - [-1.0, -0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1597   - [-0.5,  0.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1888   - [ 0.0,  0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1889   - [ 0.5,  1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1528   - [ 1.0,  1.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 917   - [ 1.5,  2.0) ┤▇▇▇▇▇▇▇ 407   - [ 2.0,  2.5) ┤▇▇▇ 174   - [ 2.5,  3.0) ┤▇ 42   + [-3.0, -2.5) ┤▇ 39   + [-2.5, -2.0) ┤▇▇▇ 166   + [-2.0, -1.5) ┤▇▇▇▇▇▇▇▇ 445   + [-1.5, -1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 880   + [-1.0, -0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1597   + [-0.5,  0.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1888   + [ 0.0,  0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1889   + [ 0.5,  1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1528   + [ 1.0,  1.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 917   + [ 1.5,  2.0) ┤▇▇▇▇▇▇▇ 407   + [ 2.0,  2.5) ┤▇▇▇ 174   + [ 2.5,  3.0) ┤▇ 42   [ 3.0,  3.5) ┤ 9   [ 3.5,  4.0) ┤ 3    └ ┘ diff --git a/test/references/histogram/parameters1_nolabels.txt b/test/references/histogram/parameters1_nolabels.txt index 6a905563..24117db8 100644 --- a/test/references/histogram/parameters1_nolabels.txt +++ b/test/references/histogram/parameters1_nolabels.txt @@ -2,18 +2,18 @@  ┌ ┐  ┤ 2    ┤ 14   -  ┤▇ 39   -  ┤▇▇▇ 166   -  ┤▇▇▇▇▇▇▇▇ 445   -  ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 880   -  ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1597   -  ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1888   -  ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1889   -  ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1528   -  ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 917   -  ┤▇▇▇▇▇▇▇ 407   -  ┤▇▇▇ 174   -  ┤▇ 42   +  ┤▇ 39   +  ┤▇▇▇ 166   +  ┤▇▇▇▇▇▇▇▇ 445   +  ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 880   +  ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1597   +  ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1888   +  ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1889   +  ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1528   +  ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 917   +  ┤▇▇▇▇▇▇▇ 407   +  ┤▇▇▇ 174   +  ┤▇ 42    ┤ 9    ┤ 3    └ ┘ \ No newline at end of file diff --git a/test/references/histogram/parameters2.txt b/test/references/histogram/parameters2.txt index d2d7766c..9d9dbab0 100644 --- a/test/references/histogram/parameters2.txt +++ b/test/references/histogram/parameters2.txt @@ -2,18 +2,18 @@  ┌──────────────────────────────────────────────────┐ [-4.0, -3.5) │ 2 │ [-3.5, -3.0) │ 14 │ - [-3.0, -2.5) │= 39 │ - [-2.5, -2.0) │==== 166 │ - [-2.0, -1.5) │========== 445 │ - [-1.5, -1.0) │==================== 880 │ - [-1.0, -0.5) │===================================== 1597 │ - [-0.5,  0.0) │============================================ 1888 │ - [ 0.0,  0.5) │============================================ 1889 │ - [ 0.5,  1.0) │==================================== 1528 │ - [ 1.0,  1.5) │===================== 917 │ - [ 1.5,  2.0) │========= 407 │ - [ 2.0,  2.5) │==== 174 │ - [ 2.5,  3.0) │= 42 │ + [-3.0, -2.5) │= 39 │ + [-2.5, -2.0) │==== 166 │ + [-2.0, -1.5) │========== 445 │ + [-1.5, -1.0) │==================== 880 │ + [-1.0, -0.5) │===================================== 1597 │ + [-0.5,  0.0) │============================================ 1888 │ + [ 0.0,  0.5) │============================================ 1889 │ + [ 0.5,  1.0) │==================================== 1528 │ + [ 1.0,  1.5) │===================== 917 │ + [ 1.5,  2.0) │========= 407 │ + [ 2.0,  2.5) │==== 174 │ + [ 2.5,  3.0) │= 42 │ [ 3.0,  3.5) │ 9 │ [ 3.5,  4.0) │ 3 │  └──────────────────────────────────────────────────┘ diff --git a/test/references/lineplot/blue.txt b/test/references/lineplot/blue.txt index 6de7331b..6941eef8 100644 --- a/test/references/lineplot/blue.txt +++ b/test/references/lineplot/blue.txt @@ -1,18 +1,18 @@  ┌────────────────────────────────────────┐ - 2 │⠉⠑⠢⠤⣀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⢺│ points1 -  │⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡗⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠉⠑⠢⢄⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⢸│ -  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠛⢖⠒⠒⠒⠒⠒⠒⡲⠖⠓⠒⠒⠒⠒⠒⠒⠒⠒⠒⢺│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠛⢅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢢⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⢸│ -  │⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢸│ - -5 │⣀⠔⠊⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢼│ + 2 │⠉⠑⠢⠤⣀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⢺│ points1 +  │⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡗⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠉⠑⠢⢄⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⢸│ +  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠛⢖⠒⠒⠒⠒⠒⠒⡲⠖⠓⠒⠒⠒⠒⠒⠒⠒⠒⠒⢺│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠛⢅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢢⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⢸│ +  │⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢸│ + -5 │⣀⠔⠊⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢼│  └────────────────────────────────────────┘  -1  3 \ No newline at end of file diff --git a/test/references/lineplot/canvassize.txt b/test/references/lineplot/canvassize.txt index 6520d174..399530c8 100644 --- a/test/references/lineplot/canvassize.txt +++ b/test/references/lineplot/canvassize.txt @@ -1,9 +1,9 @@  Scatter  ┌──────────┐ - 2 │'':.     :│ -  │'':'':':':│ -  │  :  .'. :│ -  │  :.'  '.:│ - -5 │..:      :│ + 2 │'':.     :│ +  │'':'':':':│ +  │  :  .'. :│ +  │  :.'  '.:│ + -5 │..:      :│  └──────────┘  -1  3 \ No newline at end of file diff --git a/test/references/lineplot/dates1.txt b/test/references/lineplot/dates1.txt index d06cdbe6..cf9b5bcc 100644 --- a/test/references/lineplot/dates1.txt +++ b/test/references/lineplot/dates1.txt @@ -1,9 +1,9 @@  ┌────────────────────────────────────────┐ - 1 │⠀⠀⠀⡠⠒⠉⠉⠉⠑⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠉⠉⠉⠒⠢⡀⠀⠀│ sin -  │⠀⡔⠉⠀⠀⠀⠀⠀⠀⠀⠈⠢⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠎⠁⠀⠀⠀⠀⠀⠀⠀⠑⠤⡀│ -  │⠮⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠬⠦⡤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⡤⠮⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠼│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⢄⡀⠀⠀⠀⠀⠀⠀⠀⡔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ - -1 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠦⣀⣀⣀⡠⠤⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + 1 │⠀⠀⠀⡠⠒⠉⠉⠉⠑⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠉⠉⠉⠒⠢⡀⠀⠀│ sin +  │⠀⡔⠉⠀⠀⠀⠀⠀⠀⠀⠈⠢⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠎⠁⠀⠀⠀⠀⠀⠀⠀⠑⠤⡀│ +  │⠮⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠬⠦⡤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⡤⠮⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠼│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⢄⡀⠀⠀⠀⠀⠀⠀⠀⡔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + -1 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠦⣀⣀⣀⡠⠤⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  └────────────────────────────────────────┘  1999-12-31  2000-01-30  date \ No newline at end of file diff --git a/test/references/lineplot/dates2.txt b/test/references/lineplot/dates2.txt index df1b44e5..a1b56d03 100644 --- a/test/references/lineplot/dates2.txt +++ b/test/references/lineplot/dates2.txt @@ -1,9 +1,9 @@  ┌────────────────────────────────────────┐ - 1 │⠉⠑⠒⣤⠒⠉⠉⠉⠑⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠒⠉⠉⠉⠑⢢⡔⠊⠉⠉⠉⠒⠢⡀⠀⠀│ sin -  │⠀⡔⠉⠀⠣⢄⠀⠀⠀⠀⠈⠢⡄⠀⠀⠀⠀⠀⠀⠀⠀⡔⠉⠀⠀⠀⠀⢀⠎⠁⠈⠢⡄⠀⠀⠀⠀⠑⠤⡀│ cos -  │⠮⠤⠤⠤⠤⠤⠵⡤⠤⠤⠤⠤⠬⠦⡤⠤⠤⠤⠤⢤⠮⠤⠤⠤⠤⠤⡤⠮⠤⠤⠤⠤⠬⠦⡤⠤⠤⠤⠤⠼│ -  │⠀⠀⠀⠀⠀⠀⠀⠘⢆⡀⠀⠀⠀⠀⠘⢄⡀⡠⠒⠁⠀⠀⠀⠀⡔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠘⢄⡀⠀⠀⠀│ - -1 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⢄⣀⣀⣀⠤⠜⠧⣀⣀⣀⡠⠤⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠦⣀⣀│ + 1 │⠉⠑⠒⣤⠒⠉⠉⠉⠑⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠒⠉⠉⠉⠑⢢⡔⠊⠉⠉⠉⠒⠢⡀⠀⠀│ sin +  │⠀⡔⠉⠀⠣⢄⠀⠀⠀⠀⠈⠢⡄⠀⠀⠀⠀⠀⠀⠀⠀⡔⠉⠀⠀⠀⠀⢀⠎⠁⠈⠢⡄⠀⠀⠀⠀⠑⠤⡀│ cos +  │⠮⠤⠤⠤⠤⠤⠵⡤⠤⠤⠤⠤⠬⠦⡤⠤⠤⠤⠤⢤⠮⠤⠤⠤⠤⠤⡤⠮⠤⠤⠤⠤⠬⠦⡤⠤⠤⠤⠤⠼│ +  │⠀⠀⠀⠀⠀⠀⠀⠘⢆⡀⠀⠀⠀⠀⠘⢄⡀⡠⠒⠁⠀⠀⠀⠀⡔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠘⢄⡀⠀⠀⠀│ + -1 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⢄⣀⣀⣀⠤⠜⠧⣀⣀⣀⡠⠤⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠦⣀⣀│  └────────────────────────────────────────┘  1999-12-31  2000-01-30  date \ No newline at end of file diff --git a/test/references/lineplot/default.txt b/test/references/lineplot/default.txt index d71cdbdd..c6d47f78 100644 --- a/test/references/lineplot/default.txt +++ b/test/references/lineplot/default.txt @@ -1,18 +1,18 @@  ┌────────────────────────────────────────┐ - 2 │⠉⠑⠢⠤⣀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⢺│ -  │⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡗⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠉⠑⠢⢄⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⢸│ -  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠛⢖⠒⠒⠒⠒⠒⠒⡲⠖⠓⠒⠒⠒⠒⠒⠒⠒⠒⠒⢺│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠛⢅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢢⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⢸│ -  │⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢸│ - -5 │⣀⠔⠊⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢼│ + 2 │⠉⠑⠢⠤⣀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⢺│ +  │⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡗⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠉⠑⠢⢄⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⢸│ +  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠛⢖⠒⠒⠒⠒⠒⠒⡲⠖⠓⠒⠒⠒⠒⠒⠒⠒⠒⠒⢺│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠛⢅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢢⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⢸│ +  │⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢸│ + -5 │⣀⠔⠊⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢼│  └────────────────────────────────────────┘  -1  3 \ No newline at end of file diff --git a/test/references/lineplot/limits.txt b/test/references/lineplot/limits.txt index f704585c..c64e2259 100644 --- a/test/references/lineplot/limits.txt +++ b/test/references/lineplot/limits.txt @@ -1,18 +1,18 @@  ┌────────────────────────────────────────┐ - 2.5 │⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀│ -  │⠀⠀⠀⠀⠈⠑⠢⢄⣀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⡇⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠤⣇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠔⠁⠀⠀⡇⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠉⠒⠤⣀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊⠀⠀⠀⠀⠀⡇⠀⠀⠀│ -  │⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠬⠵⠦⡤⠤⠤⠤⠤⠤⢤⠴⠭⠤⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⢀⠜⢎⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⢀⠤⠊⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⣀⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢢⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡧⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⡇⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠁⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⡇⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⡠⠊⠁⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⡇⠀⠀⠀│ -  │⠀⠀⠀⠀⢀⠔⠉⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⢄⡇⠀⠀⠀│ - -5.5 │⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀│ + 2.5 │⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀│ +  │⠀⠀⠀⠀⠈⠑⠢⢄⣀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⡇⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠤⣇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠔⠁⠀⠀⡇⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠉⠒⠤⣀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊⠀⠀⠀⠀⠀⡇⠀⠀⠀│ +  │⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠬⠵⠦⡤⠤⠤⠤⠤⠤⢤⠴⠭⠤⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⢀⠜⢎⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⢀⠤⠊⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⣀⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢢⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡧⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⡇⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠁⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⡇⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⡠⠊⠁⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⡇⠀⠀⠀│ +  │⠀⠀⠀⠀⢀⠔⠉⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⢄⡇⠀⠀⠀│ + -5.5 │⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀│  └────────────────────────────────────────┘  -1.5  3.5 \ No newline at end of file diff --git a/test/references/lineplot/nogrid.txt b/test/references/lineplot/nogrid.txt index 6e932340..c775f297 100644 --- a/test/references/lineplot/nogrid.txt +++ b/test/references/lineplot/nogrid.txt @@ -1,18 +1,18 @@  ┌────────────────────────────────────────┐ - 2 │⠉⠑⠢⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⢺│ -  │⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢆⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠛⢅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢢⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⢸│ -  │⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢸│ - -5 │⣀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢼│ + 2 │⠉⠑⠢⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⢺│ +  │⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢆⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠛⢅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢢⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⢸│ +  │⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢸│ + -5 │⣀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢼│  └────────────────────────────────────────┘  -1  3 \ No newline at end of file diff --git a/test/references/lineplot/parameters1.txt b/test/references/lineplot/parameters1.txt index 18f24445..6c5b34f1 100644 --- a/test/references/lineplot/parameters1.txt +++ b/test/references/lineplot/parameters1.txt @@ -1,20 +1,20 @@  Scatter  ┌────────────────────────────────────────┐ - 2 │⠉⠑⠢⠤⣀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⢺│ points1 -  │⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡗⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠉⠑⠢⢄⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⢸│ -  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠛⢖⠒⠒⠒⠒⠒⠒⡲⠖⠓⠒⠒⠒⠒⠒⠒⠒⠒⠒⢺│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠛⢅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ - y  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢢⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⢸│ -  │⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢸│ - -5 │⣀⠔⠊⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢼│ + 2 │⠉⠑⠢⠤⣀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⢺│ points1 +  │⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡗⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠉⠑⠢⢄⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⢸│ +  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠛⢖⠒⠒⠒⠒⠒⠒⡲⠖⠓⠒⠒⠒⠒⠒⠒⠒⠒⠒⢺│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠛⢅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ + y  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢢⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⢸│ +  │⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢸│ + -5 │⣀⠔⠊⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢼│  └────────────────────────────────────────┘  -1  3  x \ No newline at end of file diff --git a/test/references/lineplot/parameters2.txt b/test/references/lineplot/parameters2.txt index 63064631..0baa17a7 100644 --- a/test/references/lineplot/parameters2.txt +++ b/test/references/lineplot/parameters2.txt @@ -1,20 +1,20 @@  Scatter  ┌────────────────────────────────────────┐ - 2 │⠉⠑⠢⠤⣀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⢺│ points1 -  │⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⣀⠤⡤⠔⠓⠊⢹│ points2 -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡗⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⡠⠤⠤⠒⠒⠊⠉⠁⢀⠔⠊⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠉⠑⠢⢄⣀⠀⠉⠉⠁⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⢸│ -  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠛⢖⠒⠒⠒⠒⠒⠒⡲⠖⠓⠒⠒⠒⠒⠒⠒⠒⠒⠒⢺│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠛⢅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ - y  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢢⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⢸│ -  │⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢸│ - -5 │⣀⠔⠊⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢼│ + 2 │⠉⠑⠢⠤⣀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⢺│ points1 +  │⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⣀⠤⡤⠔⠓⠊⢹│ points2 +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡗⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⡠⠤⠤⠒⠒⠊⠉⠁⢀⠔⠊⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠉⠑⠢⢄⣀⠀⠉⠉⠁⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⢸│ +  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠛⢖⠒⠒⠒⠒⠒⠒⡲⠖⠓⠒⠒⠒⠒⠒⠒⠒⠒⠒⢺│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠛⢅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ + y  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢢⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⢸│ +  │⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢸│ + -5 │⣀⠔⠊⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢼│  └────────────────────────────────────────┘  -1  3  x \ No newline at end of file diff --git a/test/references/lineplot/parameters3.txt b/test/references/lineplot/parameters3.txt index be649788..d842910a 100644 --- a/test/references/lineplot/parameters3.txt +++ b/test/references/lineplot/parameters3.txt @@ -1,20 +1,20 @@  Scatter  ┌────────────────────────────────────────┐ - 2 │⠉⠑⠢⠤⣀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⢺│ points1 -  │⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⡇⠀⠀⠀⠀⠀⢀⣀⣀⠤⠤⠔⠒⠊⠉⠁⠀⠀⠀⠀⠀⢀⣀⣀⠤⡤⠔⠓⠊⢹│ points2 -  │⠀⠀⠀⠀⠀⠀⠀⢀⣀⡨⡷⠶⠶⣒⠊⠉⠁⠀⠀⠀⠀⠀⢀⣀⡠⠤⠤⠒⠒⠊⠉⠁⢀⠔⠊⠀⠀⠀⠀⢸│ points3 -  │⠀⠀⠀⠀⠀⠉⠉⠁⠀⠀⡇⠀⠀⠀⠉⠑⠢⢄⣀⠀⠉⠉⠁⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⢸│ -  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠛⢖⠒⠒⠒⠒⠒⠒⡲⠖⠓⠒⠒⠒⠒⠒⠒⠒⠒⠒⢺│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠛⢅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ - y  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢢⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⢸│ -  │⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢸│ - -5 │⣀⠔⠊⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢼│ + 2 │⠉⠑⠢⠤⣀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⢺│ points1 +  │⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⡇⠀⠀⠀⠀⠀⢀⣀⣀⠤⠤⠔⠒⠊⠉⠁⠀⠀⠀⠀⠀⢀⣀⣀⠤⡤⠔⠓⠊⢹│ points2 +  │⠀⠀⠀⠀⠀⠀⠀⢀⣀⡨⡷⠶⠶⣒⠊⠉⠁⠀⠀⠀⠀⠀⢀⣀⡠⠤⠤⠒⠒⠊⠉⠁⢀⠔⠊⠀⠀⠀⠀⢸│ points3 +  │⠀⠀⠀⠀⠀⠉⠉⠁⠀⠀⡇⠀⠀⠀⠉⠑⠢⢄⣀⠀⠉⠉⠁⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⢸│ +  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠛⢖⠒⠒⠒⠒⠒⠒⡲⠖⠓⠒⠒⠒⠒⠒⠒⠒⠒⠒⢺│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠛⢅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ + y  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢢⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⢸│ +  │⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢸│ + -5 │⣀⠔⠊⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢼│  └────────────────────────────────────────┘  -1  3  x \ No newline at end of file diff --git a/test/references/lineplot/range1.txt b/test/references/lineplot/range1.txt index ab7b3b73..b4bdf70e 100644 --- a/test/references/lineplot/range1.txt +++ b/test/references/lineplot/range1.txt @@ -1,18 +1,18 @@  ┌────────────────────────────────────────┐ - 10 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ - 6 │⣀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + 10 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + 6 │⣀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  └────────────────────────────────────────┘  1  5 \ No newline at end of file diff --git a/test/references/lineplot/range2.txt b/test/references/lineplot/range2.txt index 2e68cd41..86da68ed 100644 --- a/test/references/lineplot/range2.txt +++ b/test/references/lineplot/range2.txt @@ -1,18 +1,18 @@  ┌────────────────────────────────────────┐ - 10 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ - 6 │⣀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + 10 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + 6 │⣀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  └────────────────────────────────────────┘  11  15 \ No newline at end of file diff --git a/test/references/lineplot/scale1.txt b/test/references/lineplot/scale1.txt index 7d65bfd2..3899aa19 100644 --- a/test/references/lineplot/scale1.txt +++ b/test/references/lineplot/scale1.txt @@ -1,18 +1,18 @@  ┌────────────────────────────────────────┐ - -14.998 │⠉⠒⠤⣀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊⡇⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠉⠒⠤⡀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠈⡗⠢⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠈⠑⠢⣀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠤⠊⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠉⢆⠀⠀⠀⠀⢀⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⢀⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⢀⠜⢇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡠⠒⠁⠀⠀⠱⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⡠⠊⠀⠀⠀⠀⠀⠀⠈⢆⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⡠⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⡠⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢆⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⢀⠔⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⢀⠔⠁⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢆⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⢀⠔⠁⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⡇⠀⠀⠀⠀⠀⠀⠀│ - -15.005 │⣀⠔⠁⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢆⡇⠀⠀⠀⠀⠀⠀⠀│ + -14.998 │⠉⠒⠤⣀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊⡇⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠉⠒⠤⡀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠈⡗⠢⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠈⠑⠢⣀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠤⠊⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠉⢆⠀⠀⠀⠀⢀⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⢀⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⢀⠜⢇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡠⠒⠁⠀⠀⠱⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⡠⠊⠀⠀⠀⠀⠀⠀⠈⢆⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⡠⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⡠⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢆⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⢀⠔⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⢀⠔⠁⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢆⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⢀⠔⠁⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⡇⠀⠀⠀⠀⠀⠀⠀│ + -15.005 │⣀⠔⠁⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢆⡇⠀⠀⠀⠀⠀⠀⠀│  └────────────────────────────────────────┘  -1000  4000 \ No newline at end of file diff --git a/test/references/lineplot/scale2.txt b/test/references/lineplot/scale2.txt index cc28b2c4..96499325 100644 --- a/test/references/lineplot/scale2.txt +++ b/test/references/lineplot/scale2.txt @@ -1,18 +1,18 @@  ┌────────────────────────────────────────┐ - 2000 │⠉⠑⠒⠤⣀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠤⢺│ -  │⠀⠀⠀⠀⠀⠈⠉⠒⠤⢄⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠤⠊⠁⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠔⠊⠀⠀⠀⠀⠀⢸│ -  │⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣉⣑⣒⣤⣀⣀⣀⣀⣀⣀⣀⣀⣀⣔⣊⣀⣀⣀⣀⣀⣀⣀⣀⣸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠢⡀⠀⠀⣀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣈⠶⡊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠔⠊⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠉⠀⠀⠀⠀⠀⠀⠀⠈⠢⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⡠⠔⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⡠⠔⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⠤⡀⠀⢸│ -  │⢀⡠⠒⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⣸│ -  │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ + 2000 │⠉⠑⠒⠤⣀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠤⢺│ +  │⠀⠀⠀⠀⠀⠈⠉⠒⠤⢄⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠤⠊⠁⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠔⠊⠀⠀⠀⠀⠀⢸│ +  │⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣉⣑⣒⣤⣀⣀⣀⣀⣀⣀⣀⣀⣀⣔⣊⣀⣀⣀⣀⣀⣀⣀⣀⣸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠢⡀⠀⠀⣀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣈⠶⡊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠔⠊⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠉⠀⠀⠀⠀⠀⠀⠀⠈⠢⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⡠⠔⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⡠⠔⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⠤⡀⠀⢸│ +  │⢀⡠⠒⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⣸│ +  │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ -6000 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  └────────────────────────────────────────┘  14.999  15.003 \ No newline at end of file diff --git a/test/references/lineplot/scale3.txt b/test/references/lineplot/scale3.txt index cc0bae08..416c38d0 100644 --- a/test/references/lineplot/scale3.txt +++ b/test/references/lineplot/scale3.txt @@ -1,18 +1,18 @@  ┌────────────────────────────────────────┐ - 4000000 │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊│ -  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀│ -  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠔⠁⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⣀⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⡠⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⡇⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ - 0 │⠀⠀⠀⠀⢀⣇⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + 4000000 │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊│ +  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀│ +  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠔⠁⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⣀⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⡠⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⡇⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + 0 │⠀⠀⠀⠀⢀⣇⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  └────────────────────────────────────────┘  -100000  700000 \ No newline at end of file diff --git a/test/references/lineplot/scale3_small.txt b/test/references/lineplot/scale3_small.txt index bafe62d7..6a93e8c8 100644 --- a/test/references/lineplot/scale3_small.txt +++ b/test/references/lineplot/scale3_small.txt @@ -1,8 +1,8 @@  ┌─────┐ - 4000000 │⢸⠀⠀⠀⡜│ -  │⢸⠀⠀⡜⠀│ -  │⢸⠀⡰⠁⠀│ -  │⢸⢰⠁⠀⠀│ - 0 │⢸⠃⠀⠀⠀│ + 4000000 │⢸⠀⠀⠀⡜│ +  │⢸⠀⠀⡜⠀│ +  │⢸⠀⡰⠁⠀│ +  │⢸⢰⠁⠀⠀│ + 0 │⢸⠃⠀⠀⠀│  └─────┘  -100000700000 \ No newline at end of file diff --git a/test/references/lineplot/sin.txt b/test/references/lineplot/sin.txt index a034463c..4a19fdec 100644 --- a/test/references/lineplot/sin.txt +++ b/test/references/lineplot/sin.txt @@ -1,19 +1,19 @@  ┌────────────────────────────────────────┐ - 1 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⠋⡇⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⡜⠱⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⠋⢣⠀⠀⠀│ sin(x) -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠸⡀⠀⠀⠀⠀⠀⠀⠀⡇⢸⠁⠀⢇⠀⠀⠀⠀⠀⠀⠀⠀⠀⡎⠀⠘⡄⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⢰⠁⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⡇⡜⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⢠⠇⠀⠀⢇⠀⠀│ -  │⡆⠀⠀⠀⠀⠀⠀⠀⡜⠀⠀⠀⢱⠀⠀⠀⠀⠀⠀⠀⡇⡇⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⢸⠀⠀│ -  │⡇⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠸⡀⠀⠀⠀⠀⠀⠀⣿⠀⠀⠀⠀⢇⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠘⡆⠀│ -  │⢱⠀⠀⠀⠀⠀⠀⢠⠃⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡿⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⡇⠀│ -  │⠸⡀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⢇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠈⡆⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⢱⠀│ - f(x)  │⠤⡧⠤⠤⠤⠤⠤⡮⠤⠤⠤⠤⠤⢼⠤⠤⠤⠤⠤⢤⡧⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⡼⠤⠤⠤⠤⠤⢼⠤│ -  │⠀⢇⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⢸⡇⠀⠀⠀⠀⠀⢱⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡇│ -  │⠀⢸⠀⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⡎⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⢀⠇⠀⠀⠀⠀⠀⠀⡇│ -  │⠀⠘⡄⠀⠀⠀⡸⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⡇⡇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⡇⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⢸⡀⠀⠀⢸⠁⡇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⡎⠀⠀⠀⠀⠀⠀⠀⠘│ -  │⠀⠀⢸⠀⠀⢠⠃⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⡸⠀⡇⠀⠀⠀⠀⠀⠀⢸⠀⠀⢀⡇⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠘⡆⠀⡸⠀⠀⠀⠀⠀⠀⠀⠀⠀⢱⠀⢀⡇⠀⡇⠀⠀⠀⠀⠀⠀⠈⡇⠀⡸⠀⠀⠀⠀⠀⠀⠀⠀⠀│ - -1 │⠀⠀⠀⢱⣠⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢆⡸⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠱⣠⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + 1 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⠋⡇⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⡜⠱⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⠋⢣⠀⠀⠀│ sin(x) +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠸⡀⠀⠀⠀⠀⠀⠀⠀⡇⢸⠁⠀⢇⠀⠀⠀⠀⠀⠀⠀⠀⠀⡎⠀⠘⡄⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⢰⠁⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⡇⡜⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⢠⠇⠀⠀⢇⠀⠀│ +  │⡆⠀⠀⠀⠀⠀⠀⠀⡜⠀⠀⠀⢱⠀⠀⠀⠀⠀⠀⠀⡇⡇⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⢸⠀⠀│ +  │⡇⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠸⡀⠀⠀⠀⠀⠀⠀⣿⠀⠀⠀⠀⢇⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠘⡆⠀│ +  │⢱⠀⠀⠀⠀⠀⠀⢠⠃⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡿⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⡇⠀│ +  │⠸⡀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⢇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠈⡆⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⢱⠀│ + f(x)  │⠤⡧⠤⠤⠤⠤⠤⡮⠤⠤⠤⠤⠤⢼⠤⠤⠤⠤⠤⢤⡧⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⡼⠤⠤⠤⠤⠤⢼⠤│ +  │⠀⢇⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⢸⡇⠀⠀⠀⠀⠀⢱⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡇│ +  │⠀⢸⠀⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⡎⡇⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⢀⠇⠀⠀⠀⠀⠀⠀⡇│ +  │⠀⠘⡄⠀⠀⠀⡸⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⡇⡇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⡇⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⢸⡀⠀⠀⢸⠁⡇⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⡎⠀⠀⠀⠀⠀⠀⠀⠘│ +  │⠀⠀⢸⠀⠀⢠⠃⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⡸⠀⡇⠀⠀⠀⠀⠀⠀⢸⠀⠀⢀⡇⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠘⡆⠀⡸⠀⠀⠀⠀⠀⠀⠀⠀⠀⢱⠀⢀⡇⠀⡇⠀⠀⠀⠀⠀⠀⠈⡇⠀⡸⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + -1 │⠀⠀⠀⢱⣠⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢆⡸⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠱⣠⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀│  └────────────────────────────────────────┘  -10  10  x \ No newline at end of file diff --git a/test/references/lineplot/sin2.txt b/test/references/lineplot/sin2.txt index 0bf4bdfa..790fbb3c 100644 --- a/test/references/lineplot/sin2.txt +++ b/test/references/lineplot/sin2.txt @@ -1,19 +1,19 @@  ┌────────────────────────────────────────┐ - 1 │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⢀⠔⠋⠉⠉⠓⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ sin(x) -  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⢠⠊⠀⠀⠀⠀⠀⠈⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⢸⠀⠀⢰⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⢸⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⢸⢀⠎⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⢸⡜⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ - f(x)  │⠤⠤⠤⠤⠤⣼⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⢷⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤│ -  │⠀⠀⠀⠀⢠⢻⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⢠⠇⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠│ -  │⠀⠀⠀⡎⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠎│ -  │⠀⠀⠈⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡎⠀│ -  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀⠀⠀⠀⠀⠀⠀⠀⠀⡞⠀⠀│ -  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀⢀⠜⠀⠀⠀│ - -1 │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⣄⣀⣀⡤⠃⠀⠀⠀⠀│ + 1 │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⢀⠔⠋⠉⠉⠓⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ sin(x) +  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⢠⠊⠀⠀⠀⠀⠀⠈⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⢸⠀⠀⢰⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⢸⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⢸⢀⠎⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⢸⡜⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + f(x)  │⠤⠤⠤⠤⠤⣼⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⢷⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤│ +  │⠀⠀⠀⠀⢠⢻⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⢠⠇⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠│ +  │⠀⠀⠀⡎⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠎│ +  │⠀⠀⠈⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡎⠀│ +  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀⠀⠀⠀⠀⠀⠀⠀⠀⡞⠀⠀│ +  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀⢀⠜⠀⠀⠀│ + -1 │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⣄⣀⣀⡤⠃⠀⠀⠀⠀│  └────────────────────────────────────────┘  -1  6  x \ No newline at end of file diff --git a/test/references/lineplot/sin4.txt b/test/references/lineplot/sin4.txt index 12df2e55..25fa50ee 100644 --- a/test/references/lineplot/sin4.txt +++ b/test/references/lineplot/sin4.txt @@ -1,16 +1,16 @@  ┌────────────────────────────────────────┐ - 1 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠉⠢⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ sin(x) -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠈⠑⠢⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡠⠒⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠢⢄⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⡰⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⢀⠎⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⡠⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣇⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ - f(x)  │⠤⠤⠤⠤⠤⠤⠤⠤⠤⢤⡯⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⡰⠁⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⢀⠎⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⡠⠃⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + 1 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠉⠢⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ sin(x) +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠈⠑⠢⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡠⠒⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠢⢄⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⡰⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⢀⠎⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⡠⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣇⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + f(x)  │⠤⠤⠤⠤⠤⠤⠤⠤⠤⢤⡯⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⡰⠁⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⢀⠎⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⡠⠃⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -1 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ diff --git a/test/references/lineplot/sincos.txt b/test/references/lineplot/sincos.txt index ee2c509e..15c58feb 100644 --- a/test/references/lineplot/sincos.txt +++ b/test/references/lineplot/sincos.txt @@ -1,19 +1,19 @@  ┌────────────────────────────────────────┐ - 1 │⠀⠀⠀⠀⠀⠀⡰⠉⡆⢠⠋⡇⠀⠀⠀⠀⠀⠀⠀⡎⣷⡀⡜⠱⡄⠀⠀⠀⠀⠀⠀⢰⠋⡇⢰⠋⢣⠀⠀⠀│ sin(x) -  │⠀⠀⠀⠀⠀⢀⡇⠀⢸⡇⠀⠸⡀⠀⠀⠀⠀⠀⢸⠀⡇⣿⠁⠀⢇⠀⠀⠀⠀⠀⠀⡇⠀⠸⡎⠀⠘⡄⠀⠀│ cos(x) -  │⠀⠀⠀⠀⠀⢸⠀⠀⢸⡇⠀⠀⡇⠀⠀⠀⠀⠀⡇⠀⡇⣼⠀⠀⢸⠀⠀⠀⠀⠀⢰⠁⠀⢠⡇⠀⠀⢇⠀⠀│ -  │⡆⠀⠀⠀⠀⡎⠀⠀⡜⢇⠀⠀⢱⠀⠀⠀⠀⢠⠃⠀⡇⡏⡆⠀⠀⡇⠀⠀⠀⠀⡜⠀⠀⢸⢱⠀⠀⢸⠀⠀│ -  │⡇⠀⠀⠀⠀⡇⠀⠀⡇⢸⠀⠀⠸⡀⠀⠀⠀⢸⠀⠀⣿⠀⡇⠀⠀⢇⠀⠀⠀⠀⡇⠀⠀⡇⢸⡀⠀⠘⡆⠀│ -  │⢱⠀⠀⠀⢸⠀⠀⢠⠃⠈⡆⠀⠀⡇⠀⠀⠀⡇⠀⠀⡿⠀⢱⠀⠀⢸⠀⠀⠀⢠⠃⠀⠀⡇⠀⡇⠀⠀⡇⠀│ -  │⠸⡀⠀⠀⡸⠀⠀⢸⠀⠀⡇⠀⠀⢇⠀⠀⠀⡇⠀⠀⡇⠀⠸⡀⠀⠈⡆⠀⠀⢸⠀⠀⢸⠀⠀⢇⠀⠀⢱⠀│ - f(x)  │⠤⡧⠤⠤⡧⠤⠤⡮⠤⠤⢵⠤⠤⢼⠤⠤⢼⠤⠤⢤⡧⠤⠤⡧⠤⠤⡧⠤⠤⡮⠤⠤⡼⠤⠤⢼⠤⠤⢼⠤│ -  │⠀⢇⠀⢀⠇⠀⠀⡇⠀⠀⢸⠀⠀⠘⡄⠀⡸⠀⠀⢸⡇⠀⠀⢇⠀⠀⢱⠀⠀⡇⠀⠀⡇⠀⠀⠘⡄⠀⠀⡇│ -  │⠀⢸⠀⢸⠀⠀⢰⠁⠀⠀⠀⡇⠀⠀⡇⠀⡇⠀⠀⡎⡇⠀⠀⢸⠀⠀⢸⠀⢰⠁⠀⢀⠇⠀⠀⠀⡇⠀⠀⡇│ -  │⠀⠘⡄⡎⠀⠀⡸⠀⠀⠀⠀⡇⠀⠀⢣⢠⠇⠀⠀⡇⡇⠀⠀⠘⡄⠀⠀⡇⡸⠀⠀⢸⠀⠀⠀⠀⢣⠀⠀⢸│ -  │⠀⠀⡇⡇⠀⠀⡇⠀⠀⠀⠀⢸⠀⠀⢸⣸⠀⠀⢸⠁⡇⠀⠀⠀⡇⠀⠀⡇⡇⠀⠀⡎⠀⠀⠀⠀⢸⠀⠀⠘│ -  │⠀⠀⢸⠁⠀⢠⠃⠀⠀⠀⠀⠘⡆⠀⠀⡏⠀⠀⡸⠀⡇⠀⠀⠀⢸⠀⠀⢸⠃⠀⢀⡇⠀⠀⠀⠀⠀⡇⠀⠀│ -  │⡀⠀⡞⡆⠀⡸⠀⠀⠀⠀⠀⠀⢇⠀⢠⢷⠀⢀⡇⠀⡇⠀⠀⠀⠘⡄⠀⡜⡇⠀⡸⠀⠀⠀⠀⠀⠀⢱⠀⢀│ - -1 │⢣⣠⠃⢱⣠⠇⠀⠀⠀⠀⠀⠀⠘⣄⡜⠈⢆⡸⠀⠀⡇⠀⠀⠀⠀⢱⣠⠇⠱⣠⠇⠀⠀⠀⠀⠀⠀⠈⣆⡸│ + 1 │⠀⠀⠀⠀⠀⠀⡰⠉⡆⢠⠋⡇⠀⠀⠀⠀⠀⠀⠀⡎⣷⡀⡜⠱⡄⠀⠀⠀⠀⠀⠀⢰⠋⡇⢰⠋⢣⠀⠀⠀│ sin(x) +  │⠀⠀⠀⠀⠀⢀⡇⠀⢸⡇⠀⠸⡀⠀⠀⠀⠀⠀⢸⠀⡇⣿⠁⠀⢇⠀⠀⠀⠀⠀⠀⡇⠀⠸⡎⠀⠘⡄⠀⠀│ cos(x) +  │⠀⠀⠀⠀⠀⢸⠀⠀⢸⡇⠀⠀⡇⠀⠀⠀⠀⠀⡇⠀⡇⣼⠀⠀⢸⠀⠀⠀⠀⠀⢰⠁⠀⢠⡇⠀⠀⢇⠀⠀│ +  │⡆⠀⠀⠀⠀⡎⠀⠀⡜⢇⠀⠀⢱⠀⠀⠀⠀⢠⠃⠀⡇⡏⡆⠀⠀⡇⠀⠀⠀⠀⡜⠀⠀⢸⢱⠀⠀⢸⠀⠀│ +  │⡇⠀⠀⠀⠀⡇⠀⠀⡇⢸⠀⠀⠸⡀⠀⠀⠀⢸⠀⠀⣿⠀⡇⠀⠀⢇⠀⠀⠀⠀⡇⠀⠀⡇⢸⡀⠀⠘⡆⠀│ +  │⢱⠀⠀⠀⢸⠀⠀⢠⠃⠈⡆⠀⠀⡇⠀⠀⠀⡇⠀⠀⡿⠀⢱⠀⠀⢸⠀⠀⠀⢠⠃⠀⠀⡇⠀⡇⠀⠀⡇⠀│ +  │⠸⡀⠀⠀⡸⠀⠀⢸⠀⠀⡇⠀⠀⢇⠀⠀⠀⡇⠀⠀⡇⠀⠸⡀⠀⠈⡆⠀⠀⢸⠀⠀⢸⠀⠀⢇⠀⠀⢱⠀│ + f(x)  │⠤⡧⠤⠤⡧⠤⠤⡮⠤⠤⢵⠤⠤⢼⠤⠤⢼⠤⠤⢤⡧⠤⠤⡧⠤⠤⡧⠤⠤⡮⠤⠤⡼⠤⠤⢼⠤⠤⢼⠤│ +  │⠀⢇⠀⢀⠇⠀⠀⡇⠀⠀⢸⠀⠀⠘⡄⠀⡸⠀⠀⢸⡇⠀⠀⢇⠀⠀⢱⠀⠀⡇⠀⠀⡇⠀⠀⠘⡄⠀⠀⡇│ +  │⠀⢸⠀⢸⠀⠀⢰⠁⠀⠀⠀⡇⠀⠀⡇⠀⡇⠀⠀⡎⡇⠀⠀⢸⠀⠀⢸⠀⢰⠁⠀⢀⠇⠀⠀⠀⡇⠀⠀⡇│ +  │⠀⠘⡄⡎⠀⠀⡸⠀⠀⠀⠀⡇⠀⠀⢣⢠⠇⠀⠀⡇⡇⠀⠀⠘⡄⠀⠀⡇⡸⠀⠀⢸⠀⠀⠀⠀⢣⠀⠀⢸│ +  │⠀⠀⡇⡇⠀⠀⡇⠀⠀⠀⠀⢸⠀⠀⢸⣸⠀⠀⢸⠁⡇⠀⠀⠀⡇⠀⠀⡇⡇⠀⠀⡎⠀⠀⠀⠀⢸⠀⠀⠘│ +  │⠀⠀⢸⠁⠀⢠⠃⠀⠀⠀⠀⠘⡆⠀⠀⡏⠀⠀⡸⠀⡇⠀⠀⠀⢸⠀⠀⢸⠃⠀⢀⡇⠀⠀⠀⠀⠀⡇⠀⠀│ +  │⡀⠀⡞⡆⠀⡸⠀⠀⠀⠀⠀⠀⢇⠀⢠⢷⠀⢀⡇⠀⡇⠀⠀⠀⠘⡄⠀⡜⡇⠀⡸⠀⠀⠀⠀⠀⠀⢱⠀⢀│ + -1 │⢣⣠⠃⢱⣠⠇⠀⠀⠀⠀⠀⠀⠘⣄⡜⠈⢆⡸⠀⠀⡇⠀⠀⠀⠀⢱⣠⠇⠱⣠⠇⠀⠀⠀⠀⠀⠀⠈⣆⡸│  └────────────────────────────────────────┘  -10  10  x \ No newline at end of file diff --git a/test/references/lineplot/sincos2.txt b/test/references/lineplot/sincos2.txt index bd04e5c5..53fea72c 100644 --- a/test/references/lineplot/sincos2.txt +++ b/test/references/lineplot/sincos2.txt @@ -1,19 +1,19 @@  ┌────────────────────────────────────────┐ - 1 │⠀⠀⠀⡔⠉⢹⠉⠳⣀⠀⠀⢀⠔⠋⠉⠉⠓⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡔│ sin(x) -  │⠀⢠⠊⠀⠀⢸⠀⠀⠀⢣⢠⠊⠀⠀⠀⠀⠀⠈⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⠃⠀│ cos(x) -  │⢰⠃⠀⠀⠀⢸⠀⠀⠀⢰⢣⡀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡰⠃⠀⠀│ -  │⠃⠀⠀⠀⠀⢸⠀⠀⢰⠃⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⠃⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⢸⠀⢀⠇⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⢇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⠃⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⢸⢀⠎⠀⠀⠀⠀⠈⢆⠀⠀⠀⠀⠀⠀⠀⠘⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠎⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⢸⡜⠀⠀⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀⠀⠀⠸⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡜⠀⠀⠀⠀⠀⠀│ - f(x)  │⠤⠤⠤⠤⠤⣼⠤⠤⠤⠤⠤⠤⠤⠤⠵⡤⠤⠤⠤⠤⠤⠤⠤⢷⠤⠤⠤⠤⠤⠤⠤⠤⡼⠥⠤⠤⠤⠤⠤⠤│ -  │⠀⠀⠀⠀⢠⢻⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⢠⠇⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢆⠀⠀⠀⠀⠀⠀⠀⠈⡆⠀⠀⠀⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⢠│ -  │⠀⠀⠀⡎⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡆⠀⠀⠀⠀⠀⠀⠀⠘⡄⠀⠀⢀⡎⠀⠀⠀⠀⠀⠀⠀⢀⠎│ -  │⠀⠀⠈⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀⠀⠀⠸⡀⠀⡜⠀⠀⠀⠀⠀⠀⠀⠀⡎⠀│ -  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡄⠀⠀⠀⠀⠀⠀⠀⢸⡜⠀⠀⠀⠀⠀⠀⠀⠀⡞⠀⠀│ -  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⣄⠀⠀⠀⠀⠀⢀⠜⠘⡄⠀⠀⠀⠀⠀⢀⠜⠀⠀⠀│ - -1 │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠣⣄⣀⣀⡤⠃⠀⠀⠈⠢⣄⣀⣀⡤⠃⠀⠀⠀⠀│ + 1 │⠀⠀⠀⡔⠉⢹⠉⠳⣀⠀⠀⢀⠔⠋⠉⠉⠓⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡔│ sin(x) +  │⠀⢠⠊⠀⠀⢸⠀⠀⠀⢣⢠⠊⠀⠀⠀⠀⠀⠈⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⠃⠀│ cos(x) +  │⢰⠃⠀⠀⠀⢸⠀⠀⠀⢰⢣⡀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡰⠃⠀⠀│ +  │⠃⠀⠀⠀⠀⢸⠀⠀⢰⠃⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⠃⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⢸⠀⢀⠇⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⢇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⠃⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⢸⢀⠎⠀⠀⠀⠀⠈⢆⠀⠀⠀⠀⠀⠀⠀⠘⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠎⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⢸⡜⠀⠀⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀⠀⠀⠸⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡜⠀⠀⠀⠀⠀⠀│ + f(x)  │⠤⠤⠤⠤⠤⣼⠤⠤⠤⠤⠤⠤⠤⠤⠵⡤⠤⠤⠤⠤⠤⠤⠤⢷⠤⠤⠤⠤⠤⠤⠤⠤⡼⠥⠤⠤⠤⠤⠤⠤│ +  │⠀⠀⠀⠀⢠⢻⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⢠⠇⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢆⠀⠀⠀⠀⠀⠀⠀⠈⡆⠀⠀⠀⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⢠│ +  │⠀⠀⠀⡎⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡆⠀⠀⠀⠀⠀⠀⠀⠘⡄⠀⠀⢀⡎⠀⠀⠀⠀⠀⠀⠀⢀⠎│ +  │⠀⠀⠈⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀⠀⠀⠸⡀⠀⡜⠀⠀⠀⠀⠀⠀⠀⠀⡎⠀│ +  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡄⠀⠀⠀⠀⠀⠀⠀⢸⡜⠀⠀⠀⠀⠀⠀⠀⠀⡞⠀⠀│ +  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⣄⠀⠀⠀⠀⠀⢀⠜⠘⡄⠀⠀⠀⠀⠀⢀⠜⠀⠀⠀│ + -1 │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠣⣄⣀⣀⡤⠃⠀⠀⠈⠢⣄⣀⣀⡤⠃⠀⠀⠀⠀│  └────────────────────────────────────────┘  -1  6  x \ No newline at end of file diff --git a/test/references/lineplot/sincos3.txt b/test/references/lineplot/sincos3.txt index 91f0eecf..419ba129 100644 --- a/test/references/lineplot/sincos3.txt +++ b/test/references/lineplot/sincos3.txt @@ -1,19 +1,19 @@  ┌────────────────────────────────────────┐ - 1 │⠀⠀⠀⠀⠀⡠⠖⠊⠉⠉⡏⠉⠙⠢⢄⡀⠀⠀⠀⠀⢀⡤⠒⠋⠉⠉⠉⠉⠓⠢⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀│ sin(x) -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠈⠢⡀⣀⠞⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠙⢆⡀⠀⠀⠀⠀⠀⠀│ cos(x) -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢠⠜⠧⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⢄⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⢀⡰⠁⠀⠀⠙⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⣀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⣀⠎⠀⠀⠀⠀⠀⠀⠣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢆⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⡰⠁⠀⠀⠀⠀⠀⠀⠀⠀⠘⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣇⠎⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢢⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉│ - f(x)  │⠤⠤⠤⠤⠤⠤⠤⠤⠤⡤⡯⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠧⡤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⡰⠁⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⢀⠞⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⡠⠃⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⢢⡀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢆⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠓⢄⠀⠀⠀⠀│ - -1 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠲⢤⣀│ + 1 │⠀⠀⠀⠀⠀⡠⠖⠊⠉⠉⡏⠉⠙⠢⢄⡀⠀⠀⠀⠀⢀⡤⠒⠋⠉⠉⠉⠉⠓⠢⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀│ sin(x) +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠈⠢⡀⣀⠞⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠙⢆⡀⠀⠀⠀⠀⠀⠀│ cos(x) +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢠⠜⠧⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⢄⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⢀⡰⠁⠀⠀⠙⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⣀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⣀⠎⠀⠀⠀⠀⠀⠀⠣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢆⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⡰⠁⠀⠀⠀⠀⠀⠀⠀⠀⠘⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣇⠎⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢢⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉│ + f(x)  │⠤⠤⠤⠤⠤⠤⠤⠤⠤⡤⡯⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠧⡤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⡰⠁⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⢀⠞⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⡠⠃⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⢢⡀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢆⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠓⢄⠀⠀⠀⠀│ + -1 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠲⢤⣀│  └────────────────────────────────────────┘  -1  3  x \ No newline at end of file diff --git a/test/references/lineplot/sincos4.txt b/test/references/lineplot/sincos4.txt index aed42f66..c1c6fdac 100644 --- a/test/references/lineplot/sincos4.txt +++ b/test/references/lineplot/sincos4.txt @@ -1,18 +1,18 @@  ┌────────────────────────────────────────┐ - 1 │⠀⠀⠀⠀⠀⣀⣀⡀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠉⠢⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ sin(x) -  │⠀⠀⠀⠀⠀⠀⠀⠈⠉⠉⡏⠉⠉⠉⠑⠒⢆⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠈⠑⠢⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀│ cos(x) -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡱⡖⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠢⢄⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⡰⠊⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⢀⠎⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⡠⠃⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣇⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ - f(x)  │⠤⠤⠤⠤⠤⠤⠤⠤⠤⢤⡯⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠼⢤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⡰⠁⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⢀⠎⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⡠⠃⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠣⡀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⢄⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠣⡀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⠀⠀⠀⠀⠀│ + 1 │⠀⠀⠀⠀⠀⣀⣀⡀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠉⠢⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ sin(x) +  │⠀⠀⠀⠀⠀⠀⠀⠈⠉⠉⡏⠉⠉⠉⠑⠒⢆⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠈⠑⠢⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀│ cos(x) +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡱⡖⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠢⢄⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⡰⠊⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⢀⠎⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⡠⠃⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣇⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + f(x)  │⠤⠤⠤⠤⠤⠤⠤⠤⠤⢤⡯⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠼⢤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⡰⠁⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⢀⠎⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⡠⠃⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠣⡀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⢄⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠣⡀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⠀⠀⠀⠀⠀│ -1 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  └────────────────────────────────────────┘  -1  3 diff --git a/test/references/lineplot/sincos_parameters.txt b/test/references/lineplot/sincos_parameters.txt index d25bfd8a..6746db30 100644 --- a/test/references/lineplot/sincos_parameters.txt +++ b/test/references/lineplot/sincos_parameters.txt @@ -1,20 +1,20 @@  Funs  ┌────────────────────────────────────────┐ 1.2 │⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ s -  │⠀⢀⡠⠤⠤⠒⢺⠒⠢⠤⢤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠤⠤⠒⠒⠒⠢⠤⢤⣀⠀⠀⠀⠀⠀⠀⠀│ c -  │⠋⠁⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠉⠒⠦⣀⠀⠀⢀⡤⠒⠋⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠦⣀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⢈⡱⢼⡁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⢤⡀│ -  │⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⡔⠊⠀⠀⠈⠢⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ -  │⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⢀⡔⠉⠀⠀⠀⠀⠀⠀⠀⠣⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⢸⠀⠀⢀⠴⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ - f  │⠀⠀⠀⠀⠀⠀⢸⢀⡰⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠤⠤⠤⠤⠤⠤⣼⠧⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠬⠦⡤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤│ -  │⠀⠀⠀⠀⡠⠋⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢢⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⡠⠚⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢢⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⡠⠊⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢆⡀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠦⡀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠒⢄⠀│ - -0.9 │⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉│ +  │⠀⢀⡠⠤⠤⠒⢺⠒⠢⠤⢤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠤⠤⠒⠒⠒⠢⠤⢤⣀⠀⠀⠀⠀⠀⠀⠀│ c +  │⠋⠁⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠉⠒⠦⣀⠀⠀⢀⡤⠒⠋⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠦⣀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⢈⡱⢼⡁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⢤⡀│ +  │⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⡔⠊⠀⠀⠈⠢⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ +  │⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⢀⡔⠉⠀⠀⠀⠀⠀⠀⠀⠣⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⢸⠀⠀⢀⠴⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + f  │⠀⠀⠀⠀⠀⠀⢸⢀⡰⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠤⠤⠤⠤⠤⠤⣼⠧⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠬⠦⡤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤│ +  │⠀⠀⠀⠀⡠⠋⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢢⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⡠⠚⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢢⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⡠⠊⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢆⡀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠦⡀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠒⢄⠀│ + -0.9 │⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉│  └────────────────────────────────────────┘  -0.5  2.5  num \ No newline at end of file diff --git a/test/references/lineplot/sincostan2.txt b/test/references/lineplot/sincostan2.txt index ed3f905e..6dffae70 100644 --- a/test/references/lineplot/sincostan2.txt +++ b/test/references/lineplot/sincostan2.txt @@ -1,19 +1,19 @@  ┌────────────────────────────────────────┐ - 1 │⠀⠀⠀⡔⠉⢹⠉⠳⣀⠀⠀⢀⠔⠋⠉⠉⠓⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡔│ sin(x) -  │⠀⢠⠊⠀⠀⢸⠀⠀⠀⢣⢠⠊⠀⠀⠀⠀⠀⠈⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⠃⠀│ cos(x) -  │⢰⠃⠀⠀⠀⢸⠀⠀⠀⢰⢣⡀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡰⠃⠀⠀│ tan(x) -  │⠃⠀⠀⠀⠀⢸⠀⠀⢰⠃⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⠃⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⢸⠀⢀⠇⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⢇⠀⠀⠀⢀⠀⠀⠀⠀⠀⠀⠀⠀⢠⠃⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⢸⢀⠎⠀⠀⠀⠀⠈⢆⠀⠀⠀⠀⠀⠀⠀⠘⡆⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⢀⠎⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⢸⡜⠀⠀⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀⠀⠀⠸⡀⡞⠀⠀⠀⠀⠀⠀⠀⠀⡜⠀⠀⠀⠀⠀⠀│ - f(x)  │⠤⠤⠤⠤⠤⣼⠤⠤⠤⠤⠤⠤⠤⠤⠵⡤⠤⠤⠤⠤⠤⠤⠤⣿⠥⠤⠤⠤⠤⠤⠤⠤⡼⠥⠤⠤⠤⠤⠤⠤│ -  │⠀⠀⠀⠀⢠⢻⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⢰⠃⢣⠀⠀⠀⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⢠⠇⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢆⠀⠀⠀⠀⢀⡏⠀⠈⡆⠀⠀⠀⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⢠│ -  │⠀⠀⠀⡎⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡆⠀⠀⠀⡜⠀⠀⠀⠘⡄⠀⠀⢀⡎⠀⠀⠀⠀⠀⠀⠀⢀⠎│ -  │⠀⠀⠈⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⠀⢰⠃⠀⠀⠀⠀⠸⡀⠀⡜⠀⠀⠀⠀⠀⠀⠀⠀⡎⠀│ -  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡄⡏⠀⠀⠀⠀⠀⠀⢸⡜⠀⠀⠀⠀⠀⠀⠀⠀⡞⠀⠀│ -  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⣅⠀⠀⠀⠀⠀⢀⠜⠘⡄⠀⠀⠀⠀⠀⢀⠜⠀⠀⠀│ - -1 │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠣⣄⣀⣀⡤⠃⠀⠀⠈⠢⣄⣀⣀⡤⠃⠀⠀⠀⠀│ + 1 │⠀⠀⠀⡔⠉⢹⠉⠳⣀⠀⠀⢀⠔⠋⠉⠉⠓⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡔│ sin(x) +  │⠀⢠⠊⠀⠀⢸⠀⠀⠀⢣⢠⠊⠀⠀⠀⠀⠀⠈⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⠃⠀│ cos(x) +  │⢰⠃⠀⠀⠀⢸⠀⠀⠀⢰⢣⡀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡰⠃⠀⠀│ tan(x) +  │⠃⠀⠀⠀⠀⢸⠀⠀⢰⠃⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⠃⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⢸⠀⢀⠇⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⢇⠀⠀⠀⢀⠀⠀⠀⠀⠀⠀⠀⠀⢠⠃⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⢸⢀⠎⠀⠀⠀⠀⠈⢆⠀⠀⠀⠀⠀⠀⠀⠘⡆⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⢀⠎⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⢸⡜⠀⠀⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀⠀⠀⠸⡀⡞⠀⠀⠀⠀⠀⠀⠀⠀⡜⠀⠀⠀⠀⠀⠀│ + f(x)  │⠤⠤⠤⠤⠤⣼⠤⠤⠤⠤⠤⠤⠤⠤⠵⡤⠤⠤⠤⠤⠤⠤⠤⣿⠥⠤⠤⠤⠤⠤⠤⠤⡼⠥⠤⠤⠤⠤⠤⠤│ +  │⠀⠀⠀⠀⢠⢻⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⢰⠃⢣⠀⠀⠀⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⢠⠇⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢆⠀⠀⠀⠀⢀⡏⠀⠈⡆⠀⠀⠀⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⢠│ +  │⠀⠀⠀⡎⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡆⠀⠀⠀⡜⠀⠀⠀⠘⡄⠀⠀⢀⡎⠀⠀⠀⠀⠀⠀⠀⢀⠎│ +  │⠀⠀⠈⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⠀⢰⠃⠀⠀⠀⠀⠸⡀⠀⡜⠀⠀⠀⠀⠀⠀⠀⠀⡎⠀│ +  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡄⡏⠀⠀⠀⠀⠀⠀⢸⡜⠀⠀⠀⠀⠀⠀⠀⠀⡞⠀⠀│ +  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⣅⠀⠀⠀⠀⠀⢀⠜⠘⡄⠀⠀⠀⠀⠀⢀⠜⠀⠀⠀│ + -1 │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠣⣄⣀⣀⡤⠃⠀⠀⠈⠢⣄⣀⣀⡤⠃⠀⠀⠀⠀│  └────────────────────────────────────────┘  -1  6  x \ No newline at end of file diff --git a/test/references/lineplot/slope1.txt b/test/references/lineplot/slope1.txt index ca947c17..02fe2811 100644 --- a/test/references/lineplot/slope1.txt +++ b/test/references/lineplot/slope1.txt @@ -1,18 +1,18 @@  ┌────────────────────────────────────────┐ - 2 │⠉⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⢇⠀⠀⠀⠀⢀⣀⠤⠒⠉│ -  │⠀⠀⠈⠒⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠇⠘⣄⠤⠔⠊⠁⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⡜⠒⠉⢱⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠉⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⠤⠒⠉⠁⢰⠁⠀⠀⠀⢇⠀⠀⠀⠀⠀⠀⠀│ -  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠚⡖⠒⠒⠒⠒⠒⠒⣒⠶⠖⠚⠓⠒⠒⠒⠒⢒⠗⠒⠒⠒⠒⠚⡖⠒⠒⠒⠒⠒⠒│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⢀⡠⠔⠒⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⡜⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⢀⣀⠤⠒⠙⡅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠈⡆⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⣀⠤⠔⠊⠁⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀⠀⠀⠀⠀│ -  │⠔⠒⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡜⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡆⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢱⠀⠀⠀⠀⠀⡜⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡆⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀│ - -5 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡜⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣│ + 2 │⠉⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⢇⠀⠀⠀⠀⢀⣀⠤⠒⠉│ +  │⠀⠀⠈⠒⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠇⠘⣄⠤⠔⠊⠁⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⡜⠒⠉⢱⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠉⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⠤⠒⠉⠁⢰⠁⠀⠀⠀⢇⠀⠀⠀⠀⠀⠀⠀│ +  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠚⡖⠒⠒⠒⠒⠒⠒⣒⠶⠖⠚⠓⠒⠒⠒⠒⢒⠗⠒⠒⠒⠒⠚⡖⠒⠒⠒⠒⠒⠒│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⢀⡠⠔⠒⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⡜⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⢀⣀⠤⠒⠙⡅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠈⡆⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⣀⠤⠔⠊⠁⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀⠀⠀⠀⠀│ +  │⠔⠒⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡜⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡆⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢱⠀⠀⠀⠀⠀⡜⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡆⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀│ + -5 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡜⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣│  └────────────────────────────────────────┘  1  5 \ No newline at end of file diff --git a/test/references/lineplot/slope2.txt b/test/references/lineplot/slope2.txt index f87230e5..0533ee78 100644 --- a/test/references/lineplot/slope2.txt +++ b/test/references/lineplot/slope2.txt @@ -1,18 +1,18 @@  ┌────────────────────────────────────────┐ - 2 │⠉⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⢇⠀⠀⠀⠀⢀⣀⠤⠒⠉│ foo -  │⠀⠀⠈⠒⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠇⠘⣄⠤⠔⠊⠁⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⡜⠒⠉⢱⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠉⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⠤⠒⠉⠁⢰⠁⠀⠀⠀⢇⠀⠀⠀⠀⠀⠀⠀│ -  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠚⡖⠒⠒⠒⠒⠒⠒⣒⠶⠖⠚⠓⠒⠒⠒⠒⢒⠗⠒⠒⠒⠒⠚⡖⠒⠒⠒⠒⠒⠒│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⢀⡠⠔⠒⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⡜⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⢀⣀⠤⠒⠙⡅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠈⡆⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⣀⠤⠔⠊⠁⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠸⣀⣀⣀⠤⠴│ -  │⠔⠒⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡜⠀⣀⣀⡠⠤⠤⠒⠒⠉⠉⢣⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⣀⣀⠤⠤⠔⠒⢲⠉⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡆⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⢀⣀⣀⠤⠤⠒⠒⠊⠹⡉⠀⠀⠀⠀⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀⠀⠀│ -  │⡠⠤⠤⠒⠒⠉⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⢱⠀⠀⠀⠀⠀⡜⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡆⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀│ - -5 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡜⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣│ + 2 │⠉⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⢇⠀⠀⠀⠀⢀⣀⠤⠒⠉│ foo +  │⠀⠀⠈⠒⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠇⠘⣄⠤⠔⠊⠁⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⡜⠒⠉⢱⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠉⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⠤⠒⠉⠁⢰⠁⠀⠀⠀⢇⠀⠀⠀⠀⠀⠀⠀│ +  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠚⡖⠒⠒⠒⠒⠒⠒⣒⠶⠖⠚⠓⠒⠒⠒⠒⢒⠗⠒⠒⠒⠒⠚⡖⠒⠒⠒⠒⠒⠒│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⢀⡠⠔⠒⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⡜⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⢀⣀⠤⠒⠙⡅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠈⡆⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⣀⠤⠔⠊⠁⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠸⣀⣀⣀⠤⠴│ +  │⠔⠒⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡜⠀⣀⣀⡠⠤⠤⠒⠒⠉⠉⢣⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⣀⣀⠤⠤⠔⠒⢲⠉⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡆⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⢀⣀⣀⠤⠤⠒⠒⠊⠹⡉⠀⠀⠀⠀⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀⠀⠀│ +  │⡠⠤⠤⠒⠒⠉⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⢱⠀⠀⠀⠀⠀⡜⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡆⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀│ + -5 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡜⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣│  └────────────────────────────────────────┘  1  5 \ No newline at end of file diff --git a/test/references/lineplot/squeeze_annotations.txt b/test/references/lineplot/squeeze_annotations.txt index 8d667445..c9b6e1d4 100644 --- a/test/references/lineplot/squeeze_annotations.txt +++ b/test/references/lineplot/squeeze_annotations.txt @@ -1,19 +1,19 @@  Hellohow areyou?  ┌──────────┐ - 7 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⣼│ -  │⠀⠀⠀⠀⠀⠀⠀⢀⠜⢸│ -  │⠀⠀⠀⠀⡤⠤⢤⠮⢤⢸│ -  │⠀⠀⠀⠀⡇⢠⠊⠀⢸⢸│ -  │⠀⠀⠀⠀⣧⠃⠀⠀⢸⢸│ -  │⠀⡏⠉⡹⠁⠀⠀⠀⢸⢸│ -  │⠀⡇⡰⠁⠀⠀⠀⠀⢸⢸│ -  │⠀⡟⠀⠀⠀⠀⠀⠀⠸⠼│ -  │⡜⡇⠀⠀⠀⠀⠀⠀⠀⠀│ - 1 │⣀⡇⠀⠀⠀⠀⠀⠀⠀⠀│ + 7 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⣼│ +  │⠀⠀⠀⠀⠀⠀⠀⢀⠜⢸│ +  │⠀⠀⠀⠀⡤⠤⢤⠮⢤⢸│ +  │⠀⠀⠀⠀⡇⢠⠊⠀⢸⢸│ +  │⠀⠀⠀⠀⣧⠃⠀⠀⢸⢸│ +  │⠀⡏⠉⡹⠁⠀⠀⠀⢸⢸│ +  │⠀⡇⡰⠁⠀⠀⠀⠀⢸⢸│ +  │⠀⡟⠀⠀⠀⠀⠀⠀⠸⠼│ +  │⡜⡇⠀⠀⠀⠀⠀⠀⠀⠀│ + 1 │⣀⡇⠀⠀⠀⠀⠀⠀⠀⠀│  └──────────┘  Hellohow areyou? \ No newline at end of file diff --git a/test/references/lineplot/stairs_edgecase.txt b/test/references/lineplot/stairs_edgecase.txt index 641301e5..f1157d9d 100644 --- a/test/references/lineplot/stairs_edgecase.txt +++ b/test/references/lineplot/stairs_edgecase.txt @@ -1,18 +1,18 @@  ┌────────────────────────────────────────┐ - 7000 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ - 0 │⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣸│ + 7000 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ + 0 │⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣸│  └────────────────────────────────────────┘  1  8 \ No newline at end of file diff --git a/test/references/lineplot/stairs_parameters.txt b/test/references/lineplot/stairs_parameters.txt index 4b6de455..38870a75 100644 --- a/test/references/lineplot/stairs_parameters.txt +++ b/test/references/lineplot/stairs_parameters.txt @@ -1,20 +1,20 @@  Foo  ┌────────────────────────────────────────┐ - 7 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⢸│ 1 -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⢸│ 2 -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⢀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⡀⠀⠀⠀⠀⢸⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸⢸│ -  │⠀⠀⠀⠀⢰⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠚⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸⢸│ -  │⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⡧⡄⠀⠀⠀⢸⢸│ -  │⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣇⣇⣀⣀⣀⣸⢸│ -  │⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⢸⢸⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│ -  │⠒⠒⠒⠒⠚⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠧⠤⠤⠤⠤⠼│ -  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ - 1 │⣀⣀⣀⣀⣀⣸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + 7 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⢸│ 1 +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⢸│ 2 +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⢀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⡀⠀⠀⠀⠀⢸⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸⢸│ +  │⠀⠀⠀⠀⢰⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠚⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸⢸│ +  │⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⡧⡄⠀⠀⠀⢸⢸│ +  │⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣇⣇⣀⣀⣀⣸⢸│ +  │⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⢸⢸⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│ +  │⠒⠒⠒⠒⠚⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠧⠤⠤⠤⠤⠼│ +  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + 1 │⣀⣀⣀⣀⣀⣸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  └────────────────────────────────────────┘  1  8  x \ No newline at end of file diff --git a/test/references/lineplot/stairs_parameters2.txt b/test/references/lineplot/stairs_parameters2.txt index 4af9e69d..f54e8556 100644 --- a/test/references/lineplot/stairs_parameters2.txt +++ b/test/references/lineplot/stairs_parameters2.txt @@ -1,20 +1,20 @@  Foo  ┌────────────────────────────────────────┐ - 7 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡏⠉⠉⠉⢹⢹│ 1 -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⢸⢸│ 2 -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⢸⢸│ 3 -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⢀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⡀⡇⠀⠀⠀⢸⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⡇⠀⠀⠀⢸⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⡇⠀⠀⠀⢸⢸│ -  │⠀⠀⠀⠀⢰⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠚⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⡇⠀⠀⠀⢸⢸│ -  │⠀⠀⠀⠀⢸⢠⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⡤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⡧⡇⠀⠀⠀⢸⢸│ -  │⠀⠀⠀⠀⢸⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣇⣇⣀⣀⣀⣸⢸│ -  │⠀⠀⠀⠀⢸⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│ -  │⡏⠉⠉⠉⢹⢹⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│ -  │⡗⠒⠒⠒⠚⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│ -  │⡇⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠧⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠧⠤⠤⠤⠤⠼│ -  │⡇⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ - 1 │⣇⣀⣀⣀⣀⣸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + 7 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡏⠉⠉⠉⢹⢹│ 1 +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⢸⢸│ 2 +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⢸⢸│ 3 +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⢀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⡀⡇⠀⠀⠀⢸⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⡇⠀⠀⠀⢸⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⡇⠀⠀⠀⢸⢸│ +  │⠀⠀⠀⠀⢰⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠚⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⡇⠀⠀⠀⢸⢸│ +  │⠀⠀⠀⠀⢸⢠⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⡤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⡧⡇⠀⠀⠀⢸⢸│ +  │⠀⠀⠀⠀⢸⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣇⣇⣀⣀⣀⣸⢸│ +  │⠀⠀⠀⠀⢸⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│ +  │⡏⠉⠉⠉⢹⢹⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│ +  │⡗⠒⠒⠒⠚⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│ +  │⡇⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠧⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠧⠤⠤⠤⠤⠼│ +  │⡇⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + 1 │⣇⣀⣀⣀⣀⣸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  └────────────────────────────────────────┘  1  8  x \ No newline at end of file diff --git a/test/references/lineplot/stairs_post.txt b/test/references/lineplot/stairs_post.txt index 0f0bc6bb..0c4a7e0a 100644 --- a/test/references/lineplot/stairs_post.txt +++ b/test/references/lineplot/stairs_post.txt @@ -1,18 +1,18 @@  ┌────────────────────────────────────────┐ - 7 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⡄⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⢸⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│ -  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠧⠤⠤⠤⠤⠼│ -  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ - 1 │⣀⣀⣀⣀⣀⣸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + 7 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⡄⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⢸⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│ +  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠧⠤⠤⠤⠤⠼│ +  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + 1 │⣀⣀⣀⣀⣀⣸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  └────────────────────────────────────────┘  1  8 \ No newline at end of file diff --git a/test/references/lineplot/stairs_pre.txt b/test/references/lineplot/stairs_pre.txt index 6e72d92c..0ab6510d 100644 --- a/test/references/lineplot/stairs_pre.txt +++ b/test/references/lineplot/stairs_pre.txt @@ -1,18 +1,18 @@  ┌────────────────────────────────────────┐ - 7 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡏⠉⠉⠉⠉⠉│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⢠⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│ -  │⡏⠉⠉⠉⠉⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│ -  │⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│ -  │⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠧⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠇⠀⠀⠀⠀⠀│ -  │⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ - 1 │⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + 7 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡏⠉⠉⠉⠉⠉│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⢠⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│ +  │⡏⠉⠉⠉⠉⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│ +  │⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│ +  │⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠧⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠇⠀⠀⠀⠀⠀│ +  │⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + 1 │⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  └────────────────────────────────────────┘  1  8 \ No newline at end of file diff --git a/test/references/lineplot/y_only.txt b/test/references/lineplot/y_only.txt index e2538b6f..1b7dbd98 100644 --- a/test/references/lineplot/y_only.txt +++ b/test/references/lineplot/y_only.txt @@ -1,18 +1,18 @@  ┌────────────────────────────────────────┐ - 2 │⠉⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⢇⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠈⠒⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠇⠘⡄⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡜⠀⠀⢱⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠉⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⠁⠀⠀⠀⢇⠀⠀⠀⠀⠀⠀⠀│ -  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠚⡖⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⢒⠗⠒⠒⠒⠒⠚⡖⠒⠒⠒⠒⠒⠒│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡜⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠈⡆⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡜⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡆⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢱⠀⠀⠀⠀⠀⡜⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡆⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀│ - -5 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡜⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣│ + 2 │⠉⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⢇⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠈⠒⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠇⠘⡄⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡜⠀⠀⢱⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠉⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⠁⠀⠀⠀⢇⠀⠀⠀⠀⠀⠀⠀│ +  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠚⡖⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⢒⠗⠒⠒⠒⠒⠚⡖⠒⠒⠒⠒⠒⠒│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡜⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠈⡆⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡜⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡆⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢱⠀⠀⠀⠀⠀⡜⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡆⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀│ + -5 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡜⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣│  └────────────────────────────────────────┘  1  5 \ No newline at end of file diff --git a/test/references/plot/border_ascii.txt b/test/references/plot/border_ascii.txt index e8b1cb03..52301c1e 100644 --- a/test/references/plot/border_ascii.txt +++ b/test/references/plot/border_ascii.txt @@ -1,12 +1,12 @@  +----------------------------------------+ -  |⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊| -  |⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀| -  |⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀| -  |⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀| -  |⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣀⡀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀| -  |⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠥⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀| -  |⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀| -  |⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀| -  |⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⢄⡀⠀⠀⠀⠀| -  |⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀| +  |⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊| +  |⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀| +  |⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀| +  |⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀| +  |⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣀⡀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀| +  |⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠥⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀| +  |⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀| +  |⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀| +  |⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⢄⡀⠀⠀⠀⠀| +  |⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀|  +----------------------------------------+ \ No newline at end of file diff --git a/test/references/plot/border_barplot.txt b/test/references/plot/border_barplot.txt index d5b47e4f..7dbd63ec 100644 --- a/test/references/plot/border_barplot.txt +++ b/test/references/plot/border_barplot.txt @@ -1,12 +1,12 @@  ┌ ┐ -  ┤⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊  -  ┤⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀  -  ┤⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀  -  ┤⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀  -  ┤⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣀⡀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀  -  ┤⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠥⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀  -  ┤⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀  -  ┤⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀  -  ┤⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⢄⡀⠀⠀⠀⠀  -  ┤⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀  +  ┤⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊  +  ┤⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀  +  ┤⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀  +  ┤⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀  +  ┤⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣀⡀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀  +  ┤⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠥⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀  +  ┤⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀  +  ┤⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀  +  ┤⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⢄⡀⠀⠀⠀⠀  +  ┤⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀   └ ┘ \ No newline at end of file diff --git a/test/references/plot/border_bold.txt b/test/references/plot/border_bold.txt index 933ca7bf..d1b2b99c 100644 --- a/test/references/plot/border_bold.txt +++ b/test/references/plot/border_bold.txt @@ -1,12 +1,12 @@  ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ -  ┃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊┃ -  ┃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀┃ -  ┃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀┃ -  ┃⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀┃ -  ┃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣀⡀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀┃ -  ┃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠥⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀┃ -  ┃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀┃ -  ┃⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀┃ -  ┃⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⢄⡀⠀⠀⠀⠀┃ -  ┃⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀┃ +  ┃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊┃ +  ┃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀┃ +  ┃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀┃ +  ┃⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀┃ +  ┃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣀⡀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀┃ +  ┃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠥⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀┃ +  ┃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀┃ +  ┃⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀┃ +  ┃⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⢄⡀⠀⠀⠀⠀┃ +  ┃⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀┃  ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛ \ No newline at end of file diff --git a/test/references/plot/border_corners.txt b/test/references/plot/border_corners.txt index 47b224c2..28080275 100644 --- a/test/references/plot/border_corners.txt +++ b/test/references/plot/border_corners.txt @@ -1,12 +1,12 @@  ┌ ┐ -  ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊  -  ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀  -  ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀  -  ⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀  -  ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣀⡀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀  -  ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠥⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀  -  ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀  -  ⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀  -  ⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⢄⡀⠀⠀⠀⠀  -  ⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀  +  ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊  +  ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀  +  ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀  +  ⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀  +  ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣀⡀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀  +  ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠥⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀  +  ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀  +  ⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀  +  ⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⢄⡀⠀⠀⠀⠀  +  ⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀   └ ┘ \ No newline at end of file diff --git a/test/references/plot/border_dashed.txt b/test/references/plot/border_dashed.txt index 3a974129..3b09de37 100644 --- a/test/references/plot/border_dashed.txt +++ b/test/references/plot/border_dashed.txt @@ -1,12 +1,12 @@  ┌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┐ -  ┊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊┊ -  ┊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀┊ -  ┊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀┊ -  ┊⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀┊ -  ┊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣀⡀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀┊ -  ┊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠥⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀┊ -  ┊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀┊ -  ┊⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀┊ -  ┊⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⢄⡀⠀⠀⠀⠀┊ -  ┊⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀┊ +  ┊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊┊ +  ┊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀┊ +  ┊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀┊ +  ┊⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀┊ +  ┊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣀⡀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀┊ +  ┊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠥⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀┊ +  ┊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀┊ +  ┊⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀┊ +  ┊⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⢄⡀⠀⠀⠀⠀┊ +  ┊⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀┊  └╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┘ \ No newline at end of file diff --git a/test/references/plot/border_dotted.txt b/test/references/plot/border_dotted.txt index 6796c4af..33f651dd 100644 --- a/test/references/plot/border_dotted.txt +++ b/test/references/plot/border_dotted.txt @@ -1,12 +1,12 @@  ⡤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⢤ -  ⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢸ -  ⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⢸ -  ⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⢸ -  ⡇⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸ -  ⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣀⡀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸ -  ⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠥⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸ -  ⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸ -  ⡇⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸ -  ⡇⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⢄⡀⠀⠀⠀⠀⢸ -  ⡇⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀⢸ +  ⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢸ +  ⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⢸ +  ⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⢸ +  ⡇⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸ +  ⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣀⡀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸ +  ⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠥⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸ +  ⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸ +  ⡇⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸ +  ⡇⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⢄⡀⠀⠀⠀⠀⢸ +  ⡇⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀⢸  ⠓⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠚ \ No newline at end of file diff --git a/test/references/plot/border_none.txt b/test/references/plot/border_none.txt index 134b4720..41b4f82e 100644 --- a/test/references/plot/border_none.txt +++ b/test/references/plot/border_none.txt @@ -1,12 +1,12 @@ -  ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊  -  ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀  -  ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀  -  ⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀  -  ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣀⡀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀  -  ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠥⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀  -  ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀  -  ⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀  -  ⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⢄⡀⠀⠀⠀⠀  -  ⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀  +  ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊  +  ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀  +  ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀  +  ⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀  +  ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣀⡀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀  +  ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠥⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀  +  ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀  +  ⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀  +  ⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⢄⡀⠀⠀⠀⠀  +  ⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀  \ No newline at end of file diff --git a/test/references/plot/border_solid.txt b/test/references/plot/border_solid.txt index 45e3cea6..9e1252be 100644 --- a/test/references/plot/border_solid.txt +++ b/test/references/plot/border_solid.txt @@ -1,12 +1,12 @@  ┌────────────────────────────────────────┐ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣀⡀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠥⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⢄⡀⠀⠀⠀⠀│ -  │⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣀⡀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠥⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⢄⡀⠀⠀⠀⠀│ +  │⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀│  └────────────────────────────────────────┘ \ No newline at end of file diff --git a/test/references/plot/canvas_only.txt b/test/references/plot/canvas_only.txt index 45e3cea6..9e1252be 100644 --- a/test/references/plot/canvas_only.txt +++ b/test/references/plot/canvas_only.txt @@ -1,12 +1,12 @@  ┌────────────────────────────────────────┐ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣀⡀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠥⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⢄⡀⠀⠀⠀⠀│ -  │⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣀⡀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠥⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⢄⡀⠀⠀⠀⠀│ +  │⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀│  └────────────────────────────────────────┘ \ No newline at end of file diff --git a/test/references/plot/full_deco.txt b/test/references/plot/full_deco.txt index 7eb95425..05c9ce7c 100644 --- a/test/references/plot/full_deco.txt +++ b/test/references/plot/full_deco.txt @@ -1,16 +1,16 @@  title!(plot, text)  :tl :t :tr  ┌────────────────────────────────────────┐ - 1 │⠉⠒⠤⣀⠀⠂⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊│ 1 - 2 │⠀⠀⠀⠀⠉⠒⠤⣀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀│ 2 - 3 │⠀⠀⠄⠀⠀⠀⠀⠀⠉⠒⠤⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀│ 3 - 4 │⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣉⢳⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ 4 - ylabel!(plot, text) :l 5 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣉⡒⠤⣀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ 5 :r - 6 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠭⣒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ 6 - 7 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠭⢖⡤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ 7 - 8 │⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠛⠶⣤⣀⠀⠀⠀⠀⠀⠀⠀⠀│ 8 - 9 │⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠛⠲⢤⣀⠀⠀⠀⠀│ 9 - 10 │⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀│ 10 + 1 │⠉⠒⠤⣀⠀⠂⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊│ 1 + 2 │⠀⠀⠀⠀⠉⠒⠤⣀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀│ 2 + 3 │⠀⠀⠄⠀⠀⠀⠀⠀⠉⠒⠤⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀│ 3 + 4 │⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣉⢳⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ 4 + ylabel!(plot, text) :l 5 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣉⡒⠤⣀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ 5 :r + 6 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠭⣒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ 6 + 7 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠭⢖⡤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ 7 + 8 │⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠛⠶⣤⣀⠀⠀⠀⠀⠀⠀⠀⠀│ 8 + 9 │⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠛⠲⢤⣀⠀⠀⠀⠀│ 9 + 10 │⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀│ 10  └────────────────────────────────────────┘  :bl :b :br  xlabel!(plot, text) \ No newline at end of file diff --git a/test/references/plot/padding.txt b/test/references/plot/padding.txt index 1dded510..b0ffb511 100644 --- a/test/references/plot/padding.txt +++ b/test/references/plot/padding.txt @@ -1,14 +1,14 @@  testtitle  ┌────────────────────────────────────────┐ - :l auto 1 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊│ :r auto 1 -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ - y  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣀⡀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠥⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⢄⡀⠀⠀⠀⠀│ -  │⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀│ + :l auto 1 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊│ :r auto 1 +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + y  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣀⡀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠥⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⢄⡀⠀⠀⠀⠀│ +  │⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀│  └────────────────────────────────────────┘  x \ No newline at end of file diff --git a/test/references/plot/padding_nolabels.txt b/test/references/plot/padding_nolabels.txt index 5e4f9c38..a5a201ae 100644 --- a/test/references/plot/padding_nolabels.txt +++ b/test/references/plot/padding_nolabels.txt @@ -1,13 +1,13 @@  testtitle  ┌────────────────────────────────────────┐ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣀⡀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠥⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⢄⡀⠀⠀⠀⠀│ -  │⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣀⡀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠥⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⢄⡀⠀⠀⠀⠀│ +  │⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀│  └────────────────────────────────────────┘ \ No newline at end of file diff --git a/test/references/plot/title.txt b/test/references/plot/title.txt index f0d0b342..177fa584 100644 --- a/test/references/plot/title.txt +++ b/test/references/plot/title.txt @@ -1,13 +1,13 @@  testtitle  ┌────────────────────────────────────────┐ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣀⡀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠥⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⢄⡀⠀⠀⠀⠀│ -  │⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣀⡀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠥⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⢄⡀⠀⠀⠀⠀│ +  │⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀│  └────────────────────────────────────────┘ \ No newline at end of file diff --git a/test/references/plot/title_auto.txt b/test/references/plot/title_auto.txt index cdb3d9f2..78a25860 100644 --- a/test/references/plot/title_auto.txt +++ b/test/references/plot/title_auto.txt @@ -1,13 +1,13 @@  testtitle  ┌────────────────────────────────────────┐ - :l auto 1 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊│ :r auto 1 - :l auto 2 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀│ :r auto 2 -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣀⡀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠥⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⢄⡀⠀⠀⠀⠀│ -  │⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀│ + :l auto 1 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊│ :r auto 1 + :l auto 2 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀│ :r auto 2 +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣀⡀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠥⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⢄⡀⠀⠀⠀⠀│ +  │⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀│  └────────────────────────────────────────┘ \ No newline at end of file diff --git a/test/references/plot/xylabel.txt b/test/references/plot/xylabel.txt index 9b0cf23d..a400561e 100644 --- a/test/references/plot/xylabel.txt +++ b/test/references/plot/xylabel.txt @@ -1,13 +1,13 @@  ┌────────────────────────────────────────┐ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ - y  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣀⡀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠥⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⢄⡀⠀⠀⠀⠀│ -  │⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + y  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢳⠤⣀⡀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⢀⡨⠕⠪⠥⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⢣⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⢄⡀⠀⠀⠀⠀│ +  │⣀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠤⣀│  └────────────────────────────────────────┘  x \ No newline at end of file diff --git a/test/references/scatterplot/blue.txt b/test/references/scatterplot/blue.txt index 179b20d4..594c8097 100644 --- a/test/references/scatterplot/blue.txt +++ b/test/references/scatterplot/blue.txt @@ -1,9 +1,9 @@  ┌────────────────────────────────────────┐ - 2 │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ points1 + 2 │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ points1  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒│ +  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ @@ -13,6 +13,6 @@  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ - -5 │⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀│ + -5 │⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀│  └────────────────────────────────────────┘  -1  3 \ No newline at end of file diff --git a/test/references/scatterplot/canvassize.txt b/test/references/scatterplot/canvassize.txt index 6f00e7ec..405b614d 100644 --- a/test/references/scatterplot/canvassize.txt +++ b/test/references/scatterplot/canvassize.txt @@ -1,9 +1,9 @@  Scatter  ┌──────────┐ - 2 │' :      '│ -  │'':'''''''│ + 2 │' :      '│ +  │'':'''''''│  │  :       │  │  :       │ - -5 │. :      .│ + -5 │. :      .│  └──────────┘  -1  3 \ No newline at end of file diff --git a/test/references/scatterplot/default.txt b/test/references/scatterplot/default.txt index 4162f7fa..f974892e 100644 --- a/test/references/scatterplot/default.txt +++ b/test/references/scatterplot/default.txt @@ -1,9 +1,9 @@  ┌────────────────────────────────────────┐ - 2 │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ + 2 │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒│ +  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ @@ -13,6 +13,6 @@  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ - -5 │⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀│ + -5 │⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀│  └────────────────────────────────────────┘  -1  3 \ No newline at end of file diff --git a/test/references/scatterplot/densityplot.txt b/test/references/scatterplot/densityplot.txt index 55c47c61..8aab81ce 100644 --- a/test/references/scatterplot/densityplot.txt +++ b/test/references/scatterplot/densityplot.txt @@ -1,18 +1,18 @@  ┌────────────────────────────────────────┐ - 4 │                        ░░   ░░░░░░   ░ │ -  │                       ░░░░▒░▒▒▒▒░▒ ░   │ -  │                    ░ ░░░░▒▒▓▓▒░▒▒░▒░░ ░│ -  │                  ░░░ ▒░▒▒▓▓▓▒█▓▒░▓░░ ░░│ -  │            ░░░░░░░░░▒▒▓▓▓▒░▒█▓▒▓▒░▒░░░░│ -  │             ░░░░▒░▓█▒▒▒▒░▒▒░▒▒▒░▒░░░   │ -  │          ░ ░░░░▒▒▓▒▓▒▒▓▓▒░░▒░░░░░░░ ░  │ -  │         ░░ ░░░▓▒▓▒▓▓▓▒░▓▒░░▒░░░  ░░    │ -  │          ░░░░░░▒░▒▓▓░▒▒░▒░░░░  ░       │ -  │         ░░  ░░░░░░░▒▒▒▒░░░             │ -  │           ░  ░░░░░  ░░░░  ░            │ -  │                  ░ ░                   │ -  │                                        │ + 4 │                        ░░   ░░░░░░   ░ │ +  │                       ░░░░▒░▒▒▒▒░▒ ░   │ +  │                    ░ ░░░░▒▒▓▓▒░▒▒░▒░░ ░│ +  │                  ░░░ ▒░▒▒▓▓▓▒█▓▒░▓░░ ░░│ +  │            ░░░░░░░░░▒▒▓▓▓▒░▒█▓▒▓▒░▒░░░░│ +  │             ░░░░▒░▓█▒▒▒▒░▒▒░▒▒▒░▒░░░   │ +  │          ░ ░░░░▒▒▓▒▓▒▒▓▓▒░░▒░░░░░░░ ░  │ +  │         ░░ ░░░▓▒▓▒▓▓▓▒░▓▒░░▒░░░  ░░    │ +  │          ░░░░░░▒░▒▓▓░▒▒░▒░░░░  ░       │ +  │         ░░  ░░░░░░░▒▒▒▒░░░             │ +  │           ░  ░░░░░  ░░░░  ░            │ +  │                  ░ ░                   │ +  │                                        │  │                                        │ - -4 │                                        │ + -4 │                                        │  └────────────────────────────────────────┘  -4  4 \ No newline at end of file diff --git a/test/references/scatterplot/densityplot_parameters.txt b/test/references/scatterplot/densityplot_parameters.txt index ef0fa65c..161caa6f 100644 --- a/test/references/scatterplot/densityplot_parameters.txt +++ b/test/references/scatterplot/densityplot_parameters.txt @@ -1,20 +1,20 @@  Title  ┌────────────────────────────────────────┐ - 4 │                        ░░   ░░░░░░   ░ │ foo -  │                       ░░░░▒░▒▒▒▒░▒ ░   │ bar -  │                    ░ ░░░░▒▒▓▓▒░▒▒░▒░░ ░│ -  │                  ░░░ ▒░▒▒▓▓▓▒█▓▒░▓░░ ░░│ -  │            ░░░░░░░░░▒▒▓▓▓▒░▒█▓▒▓▒░▒░░░░│ -  │             ░░░░▒░▓█▒▒▒▒░▒▒░▒▒▒░▒░░░   │ -  │          ░ ░░░░▒▒▓▒▓▒▒▓▓▒░░▒░░░░░░░ ░  │ -  │         ░░ ░░░▓▒▓▒▓▓▓▒░▓▒░░▒░░░  ░░    │ -  │          ░░░░░░▒░▒▓▓░▒▒░▒░░░░  ░       │ -  │         ░░  ░░░░░░░▒▒▒▒░░░             │ -  │           ░  ░░░░░  ░░░░  ░            │ -  │                  ░ ░                   │ -  │                                        │ + 4 │                        ░░   ░░░░░░   ░ │ foo +  │                       ░░░░▒░▒▒▒▒░▒ ░   │ bar +  │                    ░ ░░░░▒▒▓▓▒░▒▒░▒░░ ░│ +  │                  ░░░ ▒░▒▒▓▓▓▒█▓▒░▓░░ ░░│ +  │            ░░░░░░░░░▒▒▓▓▓▒░▒█▓▒▓▒░▒░░░░│ +  │             ░░░░▒░▓█▒▒▒▒░▒▒░▒▒▒░▒░░░   │ +  │          ░ ░░░░▒▒▓▒▓▒▒▓▓▒░░▒░░░░░░░ ░  │ +  │         ░░ ░░░▓▒▓▒▓▓▓▒░▓▒░░▒░░░  ░░    │ +  │          ░░░░░░▒░▒▓▓░▒▒░▒░░░░  ░       │ +  │         ░░  ░░░░░░░▒▒▒▒░░░             │ +  │           ░  ░░░░░  ░░░░  ░            │ +  │                  ░ ░                   │ +  │                                        │  │                                        │ - -4 │                                        │ + -4 │                                        │  └────────────────────────────────────────┘  -4  4  x \ No newline at end of file diff --git a/test/references/scatterplot/limits.txt b/test/references/scatterplot/limits.txt index db108af5..697f5705 100644 --- a/test/references/scatterplot/limits.txt +++ b/test/references/scatterplot/limits.txt @@ -1,9 +1,9 @@  ┌────────────────────────────────────────┐ - 2.5 │⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀│ + 2.5 │⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤│ +  │⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ @@ -13,6 +13,6 @@  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ - -5.5 │⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀│ + -5.5 │⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀│  └────────────────────────────────────────┘  -1.5  3.5 \ No newline at end of file diff --git a/test/references/scatterplot/nogrid.txt b/test/references/scatterplot/nogrid.txt index 3bc1a2a2..2e39754f 100644 --- a/test/references/scatterplot/nogrid.txt +++ b/test/references/scatterplot/nogrid.txt @@ -1,9 +1,9 @@  ┌────────────────────────────────────────┐ - 2 │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ + 2 │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ @@ -13,6 +13,6 @@  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ - -5 │⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀│ + -5 │⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀│  └────────────────────────────────────────┘  -1  3 \ No newline at end of file diff --git a/test/references/scatterplot/parameters1.txt b/test/references/scatterplot/parameters1.txt index b71c288d..f08b1e25 100644 --- a/test/references/scatterplot/parameters1.txt +++ b/test/references/scatterplot/parameters1.txt @@ -1,10 +1,10 @@  Scatter  ┌────────────────────────────────────────┐ - 2 │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ points1 + 2 │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ points1  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒│ +  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ y  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ @@ -14,7 +14,7 @@  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ - -5 │⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀│ + -5 │⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀│  └────────────────────────────────────────┘  -1  3  x \ No newline at end of file diff --git a/test/references/scatterplot/parameters2.txt b/test/references/scatterplot/parameters2.txt index 154a29bb..221b485c 100644 --- a/test/references/scatterplot/parameters2.txt +++ b/test/references/scatterplot/parameters2.txt @@ -1,10 +1,10 @@  Scatter  ┌────────────────────────────────────────┐ - 2 │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ points1 -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ points2 -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒│ + 2 │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ points1 +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ points2 +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ y  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ @@ -14,7 +14,7 @@  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ - -5 │⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀│ + -5 │⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀│  └────────────────────────────────────────┘  -1  3  x \ No newline at end of file diff --git a/test/references/scatterplot/parameters3.txt b/test/references/scatterplot/parameters3.txt index e5b046a1..a6a1e0ce 100644 --- a/test/references/scatterplot/parameters3.txt +++ b/test/references/scatterplot/parameters3.txt @@ -1,10 +1,10 @@  Scatter  ┌────────────────────────────────────────┐ - 2 │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ points1 -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ points2 -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀│ points3 -  │⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒│ + 2 │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ points1 +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ points2 +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀│ points3 +  │⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ y  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ @@ -14,7 +14,7 @@  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ - -5 │⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀│ + -5 │⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀│  └────────────────────────────────────────┘  -1  3  x \ No newline at end of file diff --git a/test/references/scatterplot/range1.txt b/test/references/scatterplot/range1.txt index 67e24db4..c446ca0f 100644 --- a/test/references/scatterplot/range1.txt +++ b/test/references/scatterplot/range1.txt @@ -1,18 +1,18 @@  ┌────────────────────────────────────────┐ - 10 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ + 10 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ - 6 │⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + 6 │⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  └────────────────────────────────────────┘  1  5 \ No newline at end of file diff --git a/test/references/scatterplot/range2.txt b/test/references/scatterplot/range2.txt index 78bc34e8..06d5dede 100644 --- a/test/references/scatterplot/range2.txt +++ b/test/references/scatterplot/range2.txt @@ -1,18 +1,18 @@  ┌────────────────────────────────────────┐ - 10 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ + 10 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ - 6 │⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + 6 │⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  └────────────────────────────────────────┘  11  15 \ No newline at end of file diff --git a/test/references/scatterplot/scale1.txt b/test/references/scatterplot/scale1.txt index fc8fc7bf..61a3aa9c 100644 --- a/test/references/scatterplot/scale1.txt +++ b/test/references/scatterplot/scale1.txt @@ -1,9 +1,9 @@  ┌────────────────────────────────────────┐ - -14.998 │⠁⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀│ + -14.998 │⠁⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ @@ -13,6 +13,6 @@  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ - -15.005 │⡀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀│ + -15.005 │⡀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀│  └────────────────────────────────────────┘  -1000  4000 \ No newline at end of file diff --git a/test/references/scatterplot/scale2.txt b/test/references/scatterplot/scale2.txt index 7abc860c..f9eb3c9e 100644 --- a/test/references/scatterplot/scale2.txt +++ b/test/references/scatterplot/scale2.txt @@ -1,8 +1,8 @@  ┌────────────────────────────────────────┐ - 2000 │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ + 2000 │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀│ +  │⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ @@ -12,7 +12,7 @@  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ +  │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ -6000 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  └────────────────────────────────────────┘  14.999  15.003 \ No newline at end of file diff --git a/test/references/scatterplot/scale3.txt b/test/references/scatterplot/scale3.txt index a2de47d8..953c42f6 100644 --- a/test/references/scatterplot/scale3.txt +++ b/test/references/scatterplot/scale3.txt @@ -13,6 +13,6 @@  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ - -1.2796649117521434e218 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + -1.2796649117521434e218 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  └────────────────────────────────────────┘  0  2 \ No newline at end of file diff --git a/test/references/scatterplot/y_only.txt b/test/references/scatterplot/y_only.txt index 0fe38f13..005a5e37 100644 --- a/test/references/scatterplot/y_only.txt +++ b/test/references/scatterplot/y_only.txt @@ -1,9 +1,9 @@  ┌────────────────────────────────────────┐ - 2 │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + 2 │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒│ +  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ @@ -13,6 +13,6 @@  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ - -5 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀│ + -5 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀│  └────────────────────────────────────────┘  1  5 \ No newline at end of file diff --git a/test/references/spy/default_10x10.txt b/test/references/spy/default_10x10.txt index f7ade540..e2541cb3 100644 --- a/test/references/spy/default_10x10.txt +++ b/test/references/spy/default_10x10.txt @@ -1,8 +1,8 @@  Sparsity Pattern  ┌─────┐ - 1 │⠀⠐⡄⠀⡠│ > 0 -  │⠄⠂⠂⠀⠀│ < 0 - 10 │⠐⠀⠁⠥⠄│ + 1 │⠀⠐⡄⠀⡠│ > 0 +  │⠄⠂⠂⠀⠀│ < 0 + 10 │⠐⠀⠁⠥⠄│  └─────┘  1  10  nz = 14 \ No newline at end of file diff --git a/test/references/spy/default_10x15.txt b/test/references/spy/default_10x15.txt index 9455757b..c0fa698b 100644 --- a/test/references/spy/default_10x15.txt +++ b/test/references/spy/default_10x15.txt @@ -1,8 +1,8 @@  Sparsity Pattern  ┌────────┐ - 1 │⠀⠀⢢⠀⢀⠴⡀⣤│ > 0 -  │⠠⠐⠐⠀⠀⠀⠈⠐│ < 0 - 10 │⠀⠂⠈⠨⠤⠈⠂⠐│ + 1 │⠀⠀⢢⠀⢀⠴⡀⣤│ > 0 +  │⠠⠐⠐⠀⠀⠀⠈⠐│ < 0 + 10 │⠀⠂⠈⠨⠤⠈⠂⠐│  └────────┘  1  15  nz = 26 \ No newline at end of file diff --git a/test/references/spy/default_15x10.txt b/test/references/spy/default_15x10.txt index 7f6dccb3..90749b05 100644 --- a/test/references/spy/default_15x10.txt +++ b/test/references/spy/default_15x10.txt @@ -1,9 +1,9 @@  Sparsity Pattern  ┌─────┐ - 1 │⠀⢂⠀⢄⠀│ > 0 -  │⠌⠀⠐⠀⢁│ < 0 -  │⠠⠀⠍⡈⠨│ - 15 │⠀⡃⢀⠡⠣│ + 1 │⠀⢂⠀⢄⠀│ > 0 +  │⠌⠀⠐⠀⢁│ < 0 +  │⠠⠀⠍⡈⠨│ + 15 │⠀⡃⢀⠡⠣│  └─────┘  1  10  nz = 26 \ No newline at end of file diff --git a/test/references/spy/default_2000x200.txt b/test/references/spy/default_2000x200.txt index eaa360d3..3140359f 100644 --- a/test/references/spy/default_2000x200.txt +++ b/test/references/spy/default_2000x200.txt @@ -1,20 +1,20 @@  Sparsity Pattern  ┌─────┐ - 1 │⠀⠁⠀⠂⠀│ > 0 -  │⠀⠀⠐⠀⠀│ < 0 -  │⠠⠈⠌⡀⠰│ -  │⢠⠀⠀⠄⠌│ -  │⠀⠀⢉⠁⠀│ -  │⢈⠀⠂⠀⢄│ -  │⠀⠢⠀⠀⠂│ -  │⠀⠀⡀⠂⠐│ -  │⠁⠀⠈⠀⢄│ -  │⠀⠀⠀⠘⡀│ + 1 │⠀⠁⠀⠂⠀│ > 0 +  │⠀⠀⠐⠀⠀│ < 0 +  │⠠⠈⠌⡀⠰│ +  │⢠⠀⠀⠄⠌│ +  │⠀⠀⢉⠁⠀│ +  │⢈⠀⠂⠀⢄│ +  │⠀⠢⠀⠀⠂│ +  │⠀⠀⡀⠂⠐│ +  │⠁⠀⠈⠀⢄│ +  │⠀⠀⠀⠘⡀│  │⠀⠀⠀⠀⠀│ -  │⠡⠰⠀⠂⢀│ -  │⠀⠰⠀⠀⠀│ -  │⠀⠀⠁⠀⠐│ - 1945 │⠀⠀⢄⡀⠀│ +  │⠡⠰⠀⠂⢀│ +  │⠀⠰⠀⠀⠀│ +  │⠀⠀⠁⠀⠐│ + 1945 │⠀⠀⢄⡀⠀│  └─────┘  1  199  nz = 52 \ No newline at end of file diff --git a/test/references/spy/default_200x2000.txt b/test/references/spy/default_200x2000.txt index 0c1af697..26c1fd4e 100644 --- a/test/references/spy/default_200x2000.txt +++ b/test/references/spy/default_200x2000.txt @@ -1,8 +1,8 @@  Sparsity Pattern  ┌──────────────────────────────────────────────────────────────────┐ - 1 │⠀⠠⠀⠀⢀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠃⠀⠀⠀⠀⠠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠀⠀⠄⠀⠀⠀⠀⠀⠀⠀⠀⢀⠀⠀⠀⠈⠀⠀⠀⠀⠄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀│ > 0 -  │⠀⠀⠀⠀⠀⠀⠀⠠⠀⠀⠈⠂⠀⠀⠀⠀⠀⠀⠀⠀⠑⠀⢀⠀⠀⠂⠀⠠⠀⡀⠠⠀⠀⠀⠀⠈⠐⡀⠀⠀⠀⠁⠀⠀⠁⢀⠀⠀⠀⠀⠀⠀⠀⠀⠃⠀⠀⠀⠀⠀⠀⠀⠀⢀⠀⢀│ < 0 - 192 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠐⠈⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠈⠀⠀⠀⠀⠀⠈⠀⠀⠀⠀⠄⠁⠀⠀⠂⠄⠀⠀⠄⠀⠀⠀⠀⢀⠀⠀⠀⠀⠉⠀⠀⠀⠀⠂⠚⠀⠀⠑⠀│ + 1 │⠀⠠⠀⠀⢀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠃⠀⠀⠀⠀⠠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠀⠀⠄⠀⠀⠀⠀⠀⠀⠀⠀⢀⠀⠀⠀⠈⠀⠀⠀⠀⠄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀│ > 0 +  │⠀⠀⠀⠀⠀⠀⠀⠠⠀⠀⠈⠂⠀⠀⠀⠀⠀⠀⠀⠀⠑⠀⢀⠀⠀⠂⠀⠠⠀⡀⠠⠀⠀⠀⠀⠈⠐⡀⠀⠀⠀⠁⠀⠀⠁⢀⠀⠀⠀⠀⠀⠀⠀⠀⠃⠀⠀⠀⠀⠀⠀⠀⠀⢀⠀⢀│ < 0 + 192 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠐⠈⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠈⠀⠀⠀⠀⠀⠈⠀⠀⠀⠀⠄⠁⠀⠀⠂⠄⠀⠀⠄⠀⠀⠀⠀⢀⠀⠀⠀⠀⠉⠀⠀⠀⠀⠂⠚⠀⠀⠑⠀│  └──────────────────────────────────────────────────────────────────┘  1  1982  nz = 52 \ No newline at end of file diff --git a/test/references/spy/default_200x200_normal.txt b/test/references/spy/default_200x200_normal.txt index a934d02f..971b616c 100644 --- a/test/references/spy/default_200x200_normal.txt +++ b/test/references/spy/default_200x200_normal.txt @@ -1,20 +1,20 @@  Sparsity Pattern  ┌──────────────────────────────┐ - 1 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠀⠀⠀⠀⠀⠀⠀⠀⠀│ > 0 -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠐⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ < 0 -  │⠀⠀⠀⠀⠀⠂⠀⠀⠀⠁⠀⠀⠀⠀⠐⠀⠈⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠│ -  │⠀⠀⠀⠂⠀⠄⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠠⠀⠀⠀⠀⠠⠀⠀⠀⠐⠀│ -  │⠀⠀⠀⠀⢀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠁⠀⠀⠈⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠠⠀⠀⠀⠀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠⠀⠀⢀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠈⠀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀│ -  │⢀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠⢀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀⠀⠐⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⢀⠀⠀⠄⠀⡀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠂⠀⡀⠀⠀⠀⠀⠀│ -  │⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠈⠀⠀⠀⠀⠀⠀⠂⡁⠀⠀⠀⠀⠀⠀⠈⠀⠀⠀⠀⠀⠀⠀⠀⢀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠈⠀│ - 200 │⠀⠀⠀⠀⠀⠀⠀⢀⠀⠀⠀⠀⠐⠀⠀⠀⠐⠀⠠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + 1 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠀⠀⠀⠀⠀⠀⠀⠀⠀│ > 0 +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠐⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ < 0 +  │⠀⠀⠀⠀⠀⠂⠀⠀⠀⠁⠀⠀⠀⠀⠐⠀⠈⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠│ +  │⠀⠀⠀⠂⠀⠄⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠠⠀⠀⠀⠀⠠⠀⠀⠀⠐⠀│ +  │⠀⠀⠀⠀⢀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠁⠀⠀⠈⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠠⠀⠀⠀⠀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠⠀⠀⢀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠈⠀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀│ +  │⢀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠⢀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀⠀⠐⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⢀⠀⠀⠄⠀⡀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠂⠀⡀⠀⠀⠀⠀⠀│ +  │⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠈⠀⠀⠀⠀⠀⠀⠂⡁⠀⠀⠀⠀⠀⠀⠈⠀⠀⠀⠀⠀⠀⠀⠀⢀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠈⠀│ + 200 │⠀⠀⠀⠀⠀⠀⠀⢀⠀⠀⠀⠀⠐⠀⠀⠀⠐⠀⠠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  └──────────────────────────────┘  1  199  nz = 52 \ No newline at end of file diff --git a/test/references/spy/default_200x200_normal_misshaped.txt b/test/references/spy/default_200x200_normal_misshaped.txt index efda57ae..4711dd43 100644 --- a/test/references/spy/default_200x200_normal_misshaped.txt +++ b/test/references/spy/default_200x200_normal_misshaped.txt @@ -1,10 +1,10 @@  Sparsity Pattern  ┌────────────────────┐ - 1 │⠀⠀⠀⢀⠀⠀⠄⠀⠀⢀⠀⠆⢀⠈⠀⠀⠀⠀⠀⢀│ > 0 -  │⠀⠀⠁⡅⠀⠀⠀⠀⢂⠀⠠⠐⠀⠑⠀⠀⢁⠀⡀⠁│ < 0 -  │⠠⠀⠀⠀⠀⠁⠁⠀⠀⠠⠠⠀⠀⠐⠀⡀⢁⠀⡀⠂│ -  │⠀⠠⠄⠀⠀⠀⢀⢠⠀⠀⠀⠀⠄⠀⠈⠀⠂⠀⢀⠀│ - 200 │⠀⠀⠀⠀⠀⡀⠈⠀⡀⠁⠀⡀⡀⠀⠀⠀⠀⠀⠐⠂│ + 1 │⠀⠀⠀⢀⠀⠀⠄⠀⠀⢀⠀⠆⢀⠈⠀⠀⠀⠀⠀⢀│ > 0 +  │⠀⠀⠁⡅⠀⠀⠀⠀⢂⠀⠠⠐⠀⠑⠀⠀⢁⠀⡀⠁│ < 0 +  │⠠⠀⠀⠀⠀⠁⠁⠀⠀⠠⠠⠀⠀⠐⠀⡀⢁⠀⡀⠂│ +  │⠀⠠⠄⠀⠀⠀⢀⢠⠀⠀⠀⠀⠄⠀⠈⠀⠂⠀⢀⠀│ + 200 │⠀⠀⠀⠀⠀⡀⠈⠀⡀⠁⠀⡀⡀⠀⠀⠀⠀⠀⠐⠂│  └────────────────────┘  1  199  nz = 52 \ No newline at end of file diff --git a/test/references/spy/default_200x200_normal_small.txt b/test/references/spy/default_200x200_normal_small.txt index b4dd16fd..284f0fff 100644 --- a/test/references/spy/default_200x200_normal_small.txt +++ b/test/references/spy/default_200x200_normal_small.txt @@ -1,10 +1,10 @@  Sparsity Pattern  ┌──────────┐ - 1 │⠀⢀⠀⠄⢀⠰⡈⠀⠀⢀│ > 0 -  │⠀⢩⠀⠀⡂⠔⠘⠀⡁⡈│ < 0 -  │⠄⠀⠈⠁⠠⠄⠐⢀⡁⡐│ -  │⠠⠄⠀⣠⠀⠀⠄⠁⠂⡀│ - 200 │⠀⠀⢀⠁⡈⢀⡀⠀⠀⠒│ + 1 │⠀⢀⠀⠄⢀⠰⡈⠀⠀⢀│ > 0 +  │⠀⢩⠀⠀⡂⠔⠘⠀⡁⡈│ < 0 +  │⠄⠀⠈⠁⠠⠄⠐⢀⡁⡐│ +  │⠠⠄⠀⣠⠀⠀⠄⠁⠂⡀│ + 200 │⠀⠀⢀⠁⡈⢀⡀⠀⠀⠒│  └──────────┘  1  199  nz = 52 \ No newline at end of file diff --git a/test/references/spy/default_overdrawn.txt b/test/references/spy/default_overdrawn.txt index 920e0787..f03ad287 100644 --- a/test/references/spy/default_overdrawn.txt +++ b/test/references/spy/default_overdrawn.txt @@ -1,20 +1,20 @@  Sparsity Pattern  ┌──────────────────────────────┐ - 1 │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│ > 0 -  │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│ < 0 -  │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│ -  │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│ -  │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│ -  │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│ -  │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│ -  │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│ -  │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│ -  │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│ -  │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│ -  │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│ -  │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│ -  │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│ - 2000 │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│ + 1 │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│ > 0 +  │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│ < 0 +  │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│ +  │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│ +  │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│ +  │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│ +  │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│ +  │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│ +  │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│ +  │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│ +  │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│ +  │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│ +  │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│ +  │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│ + 2000 │⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿│  └──────────────────────────────┘  1  2000  nz = 399359 \ No newline at end of file diff --git a/test/references/spy/parameters_200x200_dotcanvas.txt b/test/references/spy/parameters_200x200_dotcanvas.txt index 8e30c14f..bbe6de22 100644 --- a/test/references/spy/parameters_200x200_dotcanvas.txt +++ b/test/references/spy/parameters_200x200_dotcanvas.txt @@ -1,20 +1,20 @@  Custom Title  +------------------------------+ - 1 |                    .         | > 0 -  |                '             | < 0 -  |     '   '    ' '  .         .| -  |   ' .      .      .    .   ' | -  |    .           .'  '         | -  |    .        '          .  .  | -  |       ' '              '     | -  |.             ..    '       ' | -  |                '     .  . .  | -  |                      ' .     | -  |  .                           | -  |   '      ':      '        .  | -  |          '  .                | -  |                           '' | - 200 |       .    '   ' .           | + 1 |                    .         | > 0 +  |                '             | < 0 +  |     '   '    ' '  .         .| +  |   ' .      .      .    .   ' | +  |    .           .'  '         | +  |    .        '          .  .  | +  |       ' '              '     | +  |.             ..    '       ' | +  |                '     .  . .  | +  |                      ' .     | +  |  .                           | +  |   '      ':      '        .  | +  |          '  .                | +  |                           '' | + 200 |       .    '   ' .           |  +------------------------------+  1  199  nz = 52 \ No newline at end of file diff --git a/test/references/spy/parameters_200x200_green.txt b/test/references/spy/parameters_200x200_green.txt index 6932d0da..01bc6b7c 100644 --- a/test/references/spy/parameters_200x200_green.txt +++ b/test/references/spy/parameters_200x200_green.txt @@ -1,20 +1,20 @@  Sparsity Pattern  ┌──────────────────────────────┐ - 1 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠐⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠂⠀⠀⠀⠁⠀⠀⠀⠀⠐⠀⠈⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠│ -  │⠀⠀⠀⠂⠀⠄⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠠⠀⠀⠀⠀⠠⠀⠀⠀⠐⠀│ -  │⠀⠀⠀⠀⢀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠁⠀⠀⠈⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠠⠀⠀⠀⠀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠⠀⠀⢀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠈⠀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀│ -  │⢀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠⢀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀⠀⠐⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⢀⠀⠀⠄⠀⡀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠂⠀⡀⠀⠀⠀⠀⠀│ -  │⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠈⠀⠀⠀⠀⠀⠀⠂⡁⠀⠀⠀⠀⠀⠀⠈⠀⠀⠀⠀⠀⠀⠀⠀⢀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ -  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠈⠀│ - 200 │⠀⠀⠀⠀⠀⠀⠀⢀⠀⠀⠀⠀⠐⠀⠀⠀⠐⠀⠠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ + 1 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠐⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠂⠀⠀⠀⠁⠀⠀⠀⠀⠐⠀⠈⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠│ +  │⠀⠀⠀⠂⠀⠄⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠠⠀⠀⠀⠀⠠⠀⠀⠀⠐⠀│ +  │⠀⠀⠀⠀⢀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠁⠀⠀⠈⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠠⠀⠀⠀⠀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠⠀⠀⢀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠈⠀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀│ +  │⢀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠⢀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀⠀⠐⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⢀⠀⠀⠄⠀⡀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠂⠀⡀⠀⠀⠀⠀⠀│ +  │⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠈⠀⠀⠀⠀⠀⠀⠂⡁⠀⠀⠀⠀⠀⠀⠈⠀⠀⠀⠀⠀⠀⠀⠀⢀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│ +  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠈⠀│ + 200 │⠀⠀⠀⠀⠀⠀⠀⢀⠀⠀⠀⠀⠐⠀⠀⠀⠐⠀⠠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│  └──────────────────────────────┘  1  199  nz = 52 \ No newline at end of file diff --git a/test/tst_barplot.jl b/test/tst_barplot.jl index 005db46e..dcabad18 100644 --- a/test/tst_barplot.jl +++ b/test/tst_barplot.jl @@ -124,7 +124,7 @@ end [2.244, 8.406, 11.92, 3.165], title = "Relative sizes of cities", xlabel = "population [in mil]", - color = :blue, + color = (0,0,255), margin = 7, padding = 3, labels = false, @@ -178,3 +178,16 @@ end @io2str(print(IOContext(::IO, :color=>true), p)) ) end + +@testset "colors" begin + p = barplot(["B","A"], [2,1], color=9) + test_ref( + "references/barplot/col1.txt", + @io2str(print(IOContext(::IO, :color=>true), p)) + ) + p = barplot(["B","A"], [2,1], color=(200,50,0)) + test_ref( + "references/barplot/col2.txt", + @io2str(print(IOContext(::IO, :color=>true), p)) + ) +end diff --git a/test/tst_boxplot.jl b/test/tst_boxplot.jl index f4955638..b9380766 100644 --- a/test/tst_boxplot.jl +++ b/test/tst_boxplot.jl @@ -57,3 +57,17 @@ end @io2str(show(IOContext(::IO, :color=>true), p)) ) end + +@testset "colors" begin + p = @inferred boxplot(["one", "two"], [[1,2,3], [4,5,6]], color=214) + test_ref( + "references/boxplot/col1.txt", + @io2str(show(IOContext(::IO, :color=>true), p)) + ) + + p = @inferred boxplot(["one", "two"], [[1,2,3], [4,5,6]], color=(187,0,187)) + test_ref( + "references/boxplot/col2.txt", + @io2str(show(IOContext(::IO, :color=>true), p)) + ) +end \ No newline at end of file diff --git a/test/tst_canvas.jl b/test/tst_canvas.jl index 33224d57..39f11667 100644 --- a/test/tst_canvas.jl +++ b/test/tst_canvas.jl @@ -115,3 +115,26 @@ end @io2str(print(IOContext(::IO, :color=>true), c)) ) end + +@testset "colors" begin + c = BrailleCanvas(40, 15, origin_x = 0., origin_y = 0., width = 1.2, height = 1.2) + @inferred lines!(c, 0.0, 0.0, 1.2, 0.0, (0,0,255)) + lines!(c, 0.0, 0.2, 1.2, 0.2, (255,0,0)) + lines!(c, 0.0, 0.4, 1.2, 0.4, (0,255,0)) + lines!(c, 0.0, 0.6, 1.2, 0.6, (255,255,0)) + lines!(c, 0.0, 0.8, 1.2, 0.8, 127) + lines!(c, 0.0, 1.0, 1.2, 1.0, 51) + lines!(c, 0.0, 1.2, 1.2, 1.2, 231) + + lines!(c, 0.0, 0.0, 0.0, 1.2, :blue) + lines!(c, 0.2, 0.0, 0.2, 1.2, :red) + lines!(c, 0.4, 0.0, 0.4, 1.2, :green) + lines!(c, 0.6, 0.0, 0.6, 1.2, :yellow) + lines!(c, 0.8, 0.0, 0.8, 1.2, :magenta) + lines!(c, 1.0, 0.0, 1.0, 1.2, :cyan) + lines!(c, 1.2, 0.0, 1.2, 1.2, :normal) + test_ref( + "references/canvas/colors.txt", + @io2str(print(IOContext(::IO, :color=>true), c)) + ) +end diff --git a/test/tst_histogram.jl b/test/tst_histogram.jl index 6f28b263..eca55f43 100644 --- a/test/tst_histogram.jl +++ b/test/tst_histogram.jl @@ -133,4 +133,25 @@ end "references/histogram/parameters2.txt", @io2str(print(IOContext(::IO, :color=>true), p)) ) + + # colors + p = @inferred histogram( + x, + title = "Gray color", + color = 240, + ) + test_ref( + "references/histogram/col1.txt", + @io2str(print(IOContext(::IO, :color=>true), p)) + ) + + p = @inferred histogram( + x, + title = "Green color", + color = (50,100,50), + ) + test_ref( + "references/histogram/col2.txt", + @io2str(print(IOContext(::IO, :color=>true), p)) + ) end diff --git a/test/tst_lineplot.jl b/test/tst_lineplot.jl index 30a15b5e..704ce306 100644 --- a/test/tst_lineplot.jl +++ b/test/tst_lineplot.jl @@ -108,7 +108,7 @@ end @testset "functions" begin @test_throws ArgumentError lineplot(sin, 1:.5:12, color=:blue, ylim=(-1.,1., 2.)) - @test_throws ArgumentError lineplot(sin, 1:.5:12, color=:blue, ylim=[-1.,1., 2.]) + @test_throws ArgumentError lineplot(sin, 1:.5:12, color=(0,0,255), ylim=[-1.,1., 2.]) p = @inferred lineplot(sin) test_ref( "references/lineplot/sin.txt", @@ -196,7 +196,7 @@ end @io2str(show(IOContext(::IO, :color=>true), p)) ) - p = @inferred lineplot(x, y, color = :blue, name = "points1") + p = @inferred lineplot(x, y, color = 20, name = "points1") test_ref( "references/lineplot/blue.txt", @io2str(show(IOContext(::IO, :color=>true), p)) diff --git a/test/tst_plot.jl b/test/tst_plot.jl index fc51db0e..c4a980ad 100644 --- a/test/tst_plot.jl +++ b/test/tst_plot.jl @@ -87,9 +87,9 @@ annotate!(p, :bl, ":bl", :blue) annotate!(p, :b, ":b", :green) annotate!(p, :br, ":br", :white) -@test @inferred(lines!(p, 0., 1., 1., 0., color=:blue)) === p -@test @inferred(pixel!(p, 10, 1, color = :yellow)) === p -@test @inferred(points!(p, 0.05, .75, color = :green)) === p +@test @inferred(lines!(p, 0., 1., 1., 0., color=(0,0,255))) === p +@test @inferred(pixel!(p, 10, 1, color = (255,255,0))) === p +@test @inferred(points!(p, 0.05, .75, color = (0,255,0))) === p ttl = "title!(plot, text)" @test @inferred(title!(p, ttl)) === p