Skip to content
Snippets Groups Projects
Commit c44ea7d8 authored by Brandon Lai-Cheong's avatar Brandon Lai-Cheong
Browse files

contouring tests

parent 02c66075
No related branches found
No related tags found
No related merge requests found
#include <vector> #include <vector>
#include <triangle.h> #include <triangle.h>
#include <orientation.h> #include <orientation.h>
#include <triangle_edges.h>
#include <stack_vector.h>
#include <intersections.h>
Triangle clockwiseToCounterclockwise(const Triangle &t) { Triangle clockwiseToCounterclockwise(const Triangle &t)
{
return Triangle(t.points[0], t.points[2], t.points[1], t.depth); return Triangle(t.points[0], t.points[2], t.points[1], t.depth);
} }
...@@ -30,53 +34,96 @@ Point nextPoint(const Point &previous, std::vector<Point> &candidates, const std ...@@ -30,53 +34,96 @@ Point nextPoint(const Point &previous, std::vector<Point> &candidates, const std
return p; return p;
} }
} }
return Point{-69,-69}; return Point{-69,-69};
} }
*/ */
std::vector<Point> contourize(const Triangle &t1, const Triangle &t2, const std::vector<Point> &intersections) { float distanceSquared(const Point &p1, const Point &p2)
{
return (p2.x - p1.x) * (p2.x - p1.x) + (p2.y - p1.y) * (p2.y - p1.y);
}
bool closestPoint(const Point &refPoint, const Point &p1, const Point &p2)
{
float d1 = distanceSquared(refPoint, p1);
float d2 = distanceSquared(refPoint, p2);
return d1 < d2;
}
struct IntersectionAndEdge
{
Point p;
int edge;
};
std::vector<Point> contourize(const Triangle &leftmostTriangle, const Triangle &otherTriangle, int leftmostInd)
{
std::vector<Point> result; std::vector<Point> result;
const int NUM_TRIANGLE_POINTS = 3;
// using convex hull algorithm
// start at leftmost point
// get points const TriangleEdges lftEdges(leftmostTriangle);
// initially ignoring intersection points because they cannot be the leftmost const TriangleEdges otherEdges(otherTriangle);
std::vector<Point> points; StaticVector<IntersectionAndEdge> intersectionVector;
bool usingLeftTriangle = true;
int prev = leftmostInd;
do
{
const Triangle &currentTriangle = usingLeftTriangle ? leftmostTriangle : otherTriangle;
const TriangleEdges &other = !usingLeftTriangle ? lftEdges : otherEdges;
result.push_back(currentTriangle.points[prev]);
points.insert(points.end(), t1.points, t1.points + NUM_TRIANGLE_POINTS); int nextPointInTriangle = (prev + 1) % NB_TRIANGLE_SIDES;
points.insert(points.end(), t2.points, t2.points + NUM_TRIANGLE_POINTS); const Edge &e1 = Edge{currentTriangle.points[prev], currentTriangle.points[nextPointInTriangle]};
int minX = 0; for (int i = 0; i < NB_TRIANGLE_SIDES; i++)
for (int i = 0; i < points.size(); i++) { {
if (points[minX].x > points[i].x) { auto intrs = intersection(e1, other.edges[i]);
minX = i; if (intrs.has_value())
{
intersectionVector.push_back(IntersectionAndEdge{intrs.value(), i});
}
} }
}
// add intersection points if (intersectionVector.getSize() == 0)
points.insert(points.end(), intersections.begin(), intersections.end()); {
prev = nextPointInTriangle;
continue;
}
else
{
// intersections found. Must switch to next triangle
usingLeftTriangle = !usingLeftTriangle;
int edgeIndex = intersectionVector.items[0].edge;
if (intersectionVector.getSize() == 2 && !closestPoint(currentTriangle.points[prev], intersectionVector.items->p, intersectionVector.items[1].p))
{
// closest edge
edgeIndex = intersectionVector.items[1].edge;
result.push_back(intersectionVector.items[1].p);
}
else
{
result.push_back(intersectionVector.items[0].p);
}
int previous = minX; const Edge &e2 = other.edges[edgeIndex];
int candidate; const std::pair<int, int> edgePointIndexes = TriangleEdges::otherPoint(edgeIndex);
do { if (!e1.positiveSide(e2.p1))
{
result.push_back(points[previous]); prev = edgePointIndexes.first;
candidate = (previous + 1) % points.size(); }
for (int i = 0; i < points.size(); i++) { else
if (orientation(points[previous], points[candidate], points[i]) == Counterclockwise) { {
candidate = i; prev = edgePointIndexes.second;
} }
} }
previous = candidate;
} while (previous != minX);
} while (!(prev == leftmostInd));
return result; return result;
} }
/* /*
std::vector<Point> contourize(const Triangle &t1, const Triangle &t2, const std::vector<Point> &newIntersections) { std::vector<Point> contourize(const Triangle &t1, const Triangle &t2, const std::vector<Point> &newIntersections) {
......
...@@ -21,4 +21,20 @@ TEST(ContourizeTest, TwoTriangles) { ...@@ -21,4 +21,20 @@ TEST(ContourizeTest, TwoTriangles) {
Point{2,3}}; Point{2,3}};
EXPECT_EQ(contour, expectedContour); EXPECT_EQ(contour, expectedContour);
}
TEST (ContourizeTests, TriangleSingleDipTest) {
auto t1 = Triangle({0,0}, {5,0}, {2,6}, 0);
auto t2 = Triangle({1,1}, {7,3}, {8,6}, 0);
auto newIntersections = intersections(t1, t2);
auto contour = contourize(t1, t2, newIntersections);
std::vector<Point> expectedContour{
{0,0}, {5,0}, {5,2}, {7,3}, {8,6}, {4,3}, {2,6}
};
EXPECT_EQ(contour, expectedContour);
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment