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>2014-03-27 04:48:18 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-03-27 04:48:18 +0400
commitbec7c8c7aa951dd98ee4a7c14a434a4d0ac02688 (patch)
treef0e2f66ea384572440f87f25bf5d16007bb3b384 /source/blender/blenlib/BLI_math_geom.h
parent66671f1aaecdbab932cbdff8c5e527083f5d2bc1 (diff)
BMesh: optimize BM_face_legal_splits for concave faces
Diffstat (limited to 'source/blender/blenlib/BLI_math_geom.h')
-rw-r--r--source/blender/blenlib/BLI_math_geom.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_math_geom.h b/source/blender/blenlib/BLI_math_geom.h
index db71eeb8770..14357c06f78 100644
--- a/source/blender/blenlib/BLI_math_geom.h
+++ b/source/blender/blenlib/BLI_math_geom.h
@@ -73,6 +73,7 @@ float volume_tetrahedron_v3(const float v1[3], const float v2[3], const float v3
int is_quad_convex_v3(const float v1[3], const float v2[3], const float v3[3], const float v4[3]);
int is_quad_convex_v2(const float v1[2], const float v2[2], const float v3[2], const float v4[2]);
+int is_poly_convex_v2(const float verts[][2], unsigned int nr);
/********************************* Distance **********************************/