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
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2013-10-01 07:56:02 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-10-01 07:56:02 +0400
commit92527b9264c8cca99282e7d7a2368dbf17aa4605 (patch)
treedfc9480f523a9ad72e8577920f200afed81be94a /source/blender/bmesh/intern/bmesh_polygon.c
parent6067fa682b0c70778f614ab68af20455befe5a76 (diff)
remove assert for poly_find_ear(), added recently but its incorrect, also minor style edits.
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_polygon.c')
-rw-r--r--source/blender/bmesh/intern/bmesh_polygon.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/bmesh/intern/bmesh_polygon.c b/source/blender/bmesh/intern/bmesh_polygon.c
index 2492dce05c7..0978faee9e4 100644
--- a/source/blender/bmesh/intern/bmesh_polygon.c
+++ b/source/blender/bmesh/intern/bmesh_polygon.c
@@ -865,7 +865,6 @@ static BMLoop *poly_find_ear(BMFace *f, float (*projectverts)[2], const bool use
const float cos_threshold = 0.9f;
const float bias = 1.0f + 1e-6f;
- BLI_assert(BM_face_is_normal_valid(f));
/* just triangulate degenerate faces */
if (UNLIKELY(is_zero_v3(f->no))) {
return BM_FACE_FIRST_LOOP(f);