src/apps/testapps/testPolygonInternal.c [815:829]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        GeoLoop holeGeoLoop = {.numVerts = 4, .verts = holeVerts};

        GeoPolygon polygon = {
            .geoloop = geoloop, .numHoles = 1, .holes = &holeGeoLoop};

        BBox *bboxes = calloc(sizeof(BBox), 2);
        bboxesFromGeoPolygon(&polygon, bboxes);

        CellBoundary boundary = {
            .numVerts = 4,
            .verts = {{0.6, 0.6}, {0.6, 0.4}, {0.4, 0.4}, {0.4, 0.6}}};
        BBox boundaryBBox = {0.6, 0.4, 0.6, 0.4};

        t_assert(!cellBoundaryInsidePolygon(&polygon, bboxes, &boundary,
                                            &boundaryBBox),
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/apps/testapps/testPolygonInternal.c [839:853]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        GeoLoop holeGeoLoop = {.numVerts = 4, .verts = holeVerts};

        GeoPolygon polygon = {
            .geoloop = geoloop, .numHoles = 1, .holes = &holeGeoLoop};

        BBox *bboxes = calloc(sizeof(BBox), 2);
        bboxesFromGeoPolygon(&polygon, bboxes);

        CellBoundary boundary = {
            .numVerts = 4,
            .verts = {{0.6, 0.6}, {0.6, 0.4}, {0.4, 0.4}, {0.4, 0.6}}};
        BBox boundaryBBox = {0.6, 0.4, 0.6, 0.4};

        t_assert(!cellBoundaryInsidePolygon(&polygon, bboxes, &boundary,
                                            &boundaryBBox),
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



