blob: 78e925bdb3c58b364979e14bf073fd0b9f0a109e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#pragma once
#include <string>
#include <base/types.h>
#define UNICODE_BAR_CHAR_SIZE (strlen("█"))
/** Allows you to draw a unicode-art bar whose width is displayed with a resolution of 1/8 character.
*/
namespace UnicodeBar
{
double getWidth(double x, double min, double max, double max_width);
size_t getWidthInBytes(double width);
/// In `dst` there must be a space for barWidthInBytes(width) characters and a trailing zero.
void render(double width, char * dst, const char * dst_end);
std::string render(double width);
}
|