mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 21:13:35 +00:00
Format all C++ and Java code via clang-format
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
This commit is contained in:
@@ -159,7 +159,7 @@ UNIT_TEST(Triangle_PointInsidePoint)
|
||||
UNIT_TEST(PolygonSelfIntersections_IntersectSmoke)
|
||||
{
|
||||
{
|
||||
P arr[] = { P(0, 1), P(2, -1), P(2, 1), P(0, -1) };
|
||||
P arr[] = {P(0, 1), P(2, -1), P(2, 1), P(0, -1)};
|
||||
CheckSelfIntersections(&arr[0], arr + ARRAY_SIZE(arr), true);
|
||||
}
|
||||
}
|
||||
@@ -167,13 +167,13 @@ UNIT_TEST(PolygonSelfIntersections_IntersectSmoke)
|
||||
UNIT_TEST(PolygonSelfIntersections_TangentSmoke)
|
||||
{
|
||||
{
|
||||
P arr[] = { P(0, 1), P(1, 0), P(2, 1), P(2, -1), P(1, 0), P(0, -1) };
|
||||
P arr[] = {P(0, 1), P(1, 0), P(2, 1), P(2, -1), P(1, 0), P(0, -1)};
|
||||
CheckSelfIntersections(&arr[0], arr + ARRAY_SIZE(arr), false);
|
||||
}
|
||||
|
||||
{
|
||||
P arr[] = { P(0, 0), P(2, 0), P(2, 1), P(1, 0), P(0, 1) };
|
||||
P arr[] = {P(0, 0), P(2, 0), P(2, 1), P(1, 0), P(0, 1)};
|
||||
CheckSelfIntersections(&arr[0], arr + ARRAY_SIZE(arr), false);
|
||||
}
|
||||
}
|
||||
} // namespace robust_test
|
||||
} // namespace robust_test
|
||||
|
||||
Reference in New Issue
Block a user