aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/Intersection/Inline_Tests.cpp
blob: 39f4e62f71a74e4fe40755f813ce7c4db56878ab (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
#include "CurveIntersection.h"
#include "Intersection_Tests.h"
#include "IntersectionUtilities.h"

static void assert_that(int x, int y, const char* s) {
    if (x == y) {
        return;
    }
    printf("result=%d expected=%d %s\n", x, y, s);
}

static void side_test() {
    assert_that(side(-1), 0, "side(-1) != 0");
    assert_that(side(0), 1, "side(0) != 1");
    assert_that(side(1), 2, "side(1) != 2");
}

static void sideBit_test() {
    assert_that(sideBit(-1), 1, "sideBit(-1) != 1");
    assert_that(sideBit(0), 2, "sideBit(0) != 2");
    assert_that(sideBit(1), 4, "sideBit(1) != 4");
}

static void other_two_test() {
    for (int x = 0; x < 4; ++x) {
        for (int y = 0; y < 4; ++y) {
            if (x == y) {
                continue;
            }
            int mask = other_two(x, y);
            int all = 1 << x;
            all |= 1 << y;
            all |= 1 << (x ^ mask);
            all |= 1 << (y ^ mask);
            if (all == 0x0F) {
                continue;
            }
            printf("[%d,%d] other_two failed mask=%d [%d,%d]\n",
                x, y, mask, x ^ mask, y ^ mask);
        }
    }
}

void Inline_Tests() {
    side_test();
    sideBit_test();
    other_two_test();
}