Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/object/object_remesh.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/source/blender/editors/object/object_remesh.c b/source/blender/editors/object/object_remesh.c
index 9ef2cce875f..24de6b6052e 100644
--- a/source/blender/editors/object/object_remesh.c
+++ b/source/blender/editors/object/object_remesh.c
@@ -699,12 +699,19 @@ static bool mesh_is_manifold_consistent(Mesh *mesh)
}
if (is_manifold_consistent) {
- /* check for wire edges */
for (uint i = 0; i < mesh->totedge; i++) {
+ /* Check for wire edges. */
if (edge_faces[i] == 0) {
is_manifold_consistent = false;
break;
}
+ /* Check for zero length edges */
+ MVert *v1 = &mesh->mvert[mesh->medge[i].v1];
+ MVert *v2 = &mesh->mvert[mesh->medge[i].v2];
+ if (compare_v3v3(v1->co, v2->co, 1e-4f)) {
+ is_manifold_consistent = false;
+ break;
+ }
}
}