Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Philip Trettner
polymesh
Commits
d1881c0f
Commit
d1881c0f
authored
Jul 24, 2018
by
Philip Trettner
Browse files
fixed order in add_or_get_edge
parent
2e3eab80
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/polymesh/impl/impl_low_level_api_mutable.hh
View file @
d1881c0f
...
...
@@ -177,13 +177,13 @@ inline edge_index low_level_api_mutable::add_or_get_edge(halfedge_index h_from,
auto
h_from_next
=
next_halfedge_of
(
h_from
);
connect_prev_next
(
h_from
,
h_from_to
);
connect_prev_next
(
h_from
_next
,
h_
to_
from
);
connect_prev_next
(
h_
to_
from
,
h_from
_next
);
// Link to side
auto
h_to_next
=
next_halfedge_of
(
h_to
);
connect_prev_next
(
h_to
,
h_to_from
);
connect_prev_next
(
h_
to_next
,
h_from_to
);
connect_prev_next
(
h_
from_to
,
h_to_next
);
return
e
;
}
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment