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>2012-04-15 14:09:27 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-15 14:09:27 +0400
commitdb53faffa3e86fb44bfa2a025a5261eb69d3bc09 (patch)
treea2de3a7992a3d2655cfe2a06ee36191f30e55360 /source/blender/bmesh/intern/bmesh_polygon.h
parent97538bd9edf48f07c132fbddeccc421c56bd9b69 (diff)
make ngon_perimeter into a public api function and expose to python.
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_polygon.h')
-rw-r--r--source/blender/bmesh/intern/bmesh_polygon.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/bmesh/intern/bmesh_polygon.h b/source/blender/bmesh/intern/bmesh_polygon.h
index 3c8f3dc3339..71387f18ce2 100644
--- a/source/blender/bmesh/intern/bmesh_polygon.h
+++ b/source/blender/bmesh/intern/bmesh_polygon.h
@@ -28,6 +28,7 @@
*/
float BM_face_area_calc(BMesh *bm, BMFace *f);
+float BM_face_perimeter_calc(BMesh *bm, BMFace *f);
void BM_face_center_bounds_calc(BMesh *bm, BMFace *f, float center[3]);
void BM_face_center_mean_calc(BMesh *bm, BMFace *f, float center[3]);