ADSB position decoding

Date and time string format function
Binary update
This commit is contained in:
furrtek 2017-08-17 12:56:47 +01:00
parent 9d902bc224
commit 2628f9c03d
15 changed files with 255 additions and 108 deletions

View file

@ -26,6 +26,17 @@
namespace ui {
Color term_colors[8] = {
Color::black(),
Color::red(),
Color::green(),
Color::yellow(),
Color::blue(),
Color::magenta(),
Color::cyan(),
Color::white()
};
bool Rect::contains(const Point p) const {
return (p.x() >= left()) && (p.y() >= top()) &&
(p.x() < right()) && (p.y() < bottom());