Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
halfedge
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
jTEM
halfedge
Commits
6bf44204
Commit
6bf44204
authored
May 17, 2013
by
Charles Gunn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
git-svn-id:
https://svn.math.tu-berlin.de/svn/jtem@1573
f5b180c5-49ee-4939-b20e-b6ed35f0f7b7
parent
8fc11899
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
src/de/jtem/halfedge/util/HalfEdgeUtils.java
src/de/jtem/halfedge/util/HalfEdgeUtils.java
+7
-7
No files found.
src/de/jtem/halfedge/util/HalfEdgeUtils.java
View file @
6bf44204
...
...
@@ -427,10 +427,10 @@ public final class HalfEdgeUtils {
LinkedList
<
E
>
result
=
new
LinkedList
<
E
>();
E
e
=
e0
;
do
{
if
(
vertex
!=
e
.
getTargetVertex
())
{
throw
new
RuntimeException
(
"Edge "
+
e
+
" does not have vertex "
+
vertex
+
" as target vertex, "
+
"although it is the opposite of the next edge of an edge which does."
);
}
//
if (vertex != e.getTargetVertex()) {
//
throw new RuntimeException("Edge " + e + " does not have vertex " + vertex + " as target vertex, " +
//
"although it is the opposite of the next edge of an edge which does.");
//
}
result
.
add
(
e
);
e
=
e
.
getNextEdge
();
if
(
e
==
null
)
{
...
...
@@ -832,9 +832,9 @@ public final class HalfEdgeUtils {
E
eResult
=
constructFaceByVertices
(
heds
,
v0
,
v1
,
v2
,
v3
);
constructFaceByVertices
(
heds
,
v0
,
v4
,
v5
,
v1
);
constructFaceByVertices
(
heds
,
v1
,
v5
,
v6
,
v2
);
constructFaceByVertices
(
heds
,
v
7
,
v3
,
v2
,
v6
);
constructFaceByVertices
(
heds
,
v
0
,
v3
,
v7
,
v4
);
constructFaceByVertices
(
heds
,
v
4
,
v7
,
v6
,
v5
);
constructFaceByVertices
(
heds
,
v
2
,
v6
,
v7
,
v3
);
constructFaceByVertices
(
heds
,
v
3
,
v7
,
v4
,
v0
);
constructFaceByVertices
(
heds
,
v
7
,
v6
,
v5
,
v4
);
return
eResult
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment