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

additional Point in Triangle tests

parent 377290f0
No related branches found
No related tags found
No related merge requests found
......@@ -7,4 +7,7 @@ TEST(PointInTriangleTests, PointInTriangle) {
EXPECT_FALSE(t.pointInTriangle({1.107,0.834}));
EXPECT_FALSE(t.pointInTriangle({2.553, 0.823}));
EXPECT_FALSE(t.pointInTriangle({1.63, 0.13}));
EXPECT_FALSE(t.pointInTriangle({1, 0.5}));
EXPECT_FALSE(t.pointInTriangle({3, 0.2}));
EXPECT_FALSE(t.pointInTriangle({2,1}));
}
\ 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