Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
unionized-triangles-2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Brandon Lai-Cheong
unionized-triangles-2
Commits
c44ea7d8
Commit
c44ea7d8
authored
5 months ago
by
Brandon Lai-Cheong
Browse files
Options
Downloads
Patches
Plain Diff
contouring tests
parent
02c66075
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/utilities/contourize.cpp
+78
-31
78 additions, 31 deletions
src/utilities/contourize.cpp
tests/unit_tests/contourize_tests.cpp
+16
-0
16 additions, 0 deletions
tests/unit_tests/contourize_tests.cpp
with
94 additions
and
31 deletions
src/utilities/contourize.cpp
+
78
−
31
View file @
c44ea7d8
#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) {
...
...
This diff is collapsed.
Click to expand it.
tests/unit_tests/contourize_tests.cpp
+
16
−
0
View file @
c44ea7d8
...
@@ -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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment