FTXUI/src/ftxui/screen/box.cpp

20 lines
457 B
C++
Raw Normal View History

2020-04-20 03:00:37 +08:00
// Copyright 2020 Arthur Sonzogni. All rights reserved.
// Use of this source code is governed by the MIT license that can be found in
// the LICENSE file.
2019-01-20 05:06:05 +08:00
#include "ftxui/screen/box.hpp"
2020-03-23 05:32:44 +08:00
#include <algorithm>
2019-01-20 05:06:05 +08:00
namespace ftxui {
// static
Box Box::Intersection(Box a, Box b) {
return Box{
std::max(a.x_min, b.x_min),
std::min(a.x_max, b.x_max),
std::max(a.y_min, b.y_min),
std::min(a.y_max, b.y_max),
};
}
} // namespace ftxui