FTXUI/src/ftxui/screen/box.cpp

15 lines
299 B
C++
Raw Normal View History

2019-01-20 05:06:05 +08:00
#include "ftxui/screen/box.hpp"
#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