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-06-27 01:47:08 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-06-27 01:47:08 +0400
commit329b832dc2ca24daed28ac022e95ded2ff09bbed (patch)
tree6fbff35183cda86f1f227f57e4207f4cb9818b6c /source/blender/bmesh/intern/bmesh_polygon.h
parent56a47b611403dfa4d9c400cf7b2432560f4152ef (diff)
BM_face_legal_splits - perform calculations in 2d (was using 3d vectors for all 2d operations)
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 54013cc0cfa..2f6b54b91d3 100644
--- a/source/blender/bmesh/intern/bmesh_polygon.h
+++ b/source/blender/bmesh/intern/bmesh_polygon.h
@@ -33,6 +33,7 @@ int BM_face_calc_tessellation(BMFace *f, BMLoop **r_loops, int (*r_index)[3])
__attribute__((nonnull))
#endif
;
+void BM_face_calc_normal(BMFace *f, float r_no[3]);
float BM_face_calc_area(BMFace *f);
float BM_face_calc_perimeter(BMFace *f);
void BM_face_calc_plane(BMFace *f, float r_plane[3]);