We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 963b9c6 + 96b5e9b commit 601a605Copy full SHA for 601a605
bindings/python/requirements.txt
@@ -2,5 +2,5 @@
2
# This file is autogenerated by pip-compile with Python 3.10
3
# by the following command:
4
#
5
-# pip-compile bindings/python/requirements.in
+# pip-compile --pre bindings/python/requirements.in
6
src/geode/mesh/helpers/detail/curve_merger.cpp
@@ -135,6 +135,10 @@ namespace geode
135
vertices[v] = merger.vertex_in_merged(
136
s, curve.edge_vertex( { e, v } ) );
137
}
138
+ if( vertices[0] == vertices[1] )
139
+ {
140
+ continue;
141
+ }
142
const auto it =
143
edges.try_emplace( TypedVertexCycle{ vertices },
144
merger.mesh().nb_edges() );
0 commit comments