summaryrefslogtreecommitdiff
path: root/matching/src/box.cpp
blob: c128698d362d4b6706170976cdaf8efbc644f463 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#include "box.h"

namespace md {

    std::ostream& operator<<(std::ostream& os, const Box& box)
    {
        os << "Box(lower_left = " << box.lower_left() << ", upper_right = " << box.upper_right() << ")";
        return os;
    }

    Box get_enclosing_box(const Box& box_a, const Box& box_b)
    {
        Point lower_left(std::min(box_a.lower_left().x, box_b.lower_left().x),
                std::min(box_a.lower_left().y, box_b.lower_left().y));
        Point upper_right(std::max(box_a.upper_right().x, box_b.upper_right().x),
                std::max(box_a.upper_right().y, box_b.upper_right().y));
        return Box(lower_left, upper_right);
    }

    void Box::translate(md::Real a)
    {
        ll.x += a;
        ll.y += a;
        ur.x += a;
        ur.y += a;
    }

    std::vector<Box> Box::refine() const
    {
        std::vector<Box> result;

//        1 | 2
//        0 | 3

        Point new_ll = lower_left();
        Point new_ur = center();
        result.emplace_back(new_ll, new_ur);

        new_ll.y = center().y;
        new_ur.y = ur.y;
        result.emplace_back(new_ll, new_ur);

        new_ll = center();
        new_ur = upper_right();
        result.emplace_back(new_ll, new_ur);

        new_ll.y = ll.y;
        new_ur.y = center().y;
        result.emplace_back(new_ll, new_ur);

        return result;
    }

    std::vector<Point> Box::corners() const
    {
        return {ll, Point(ll.x, ur.y), ur, Point(ur.x, ll.y)};
    };


}