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-02-27 18:07:19 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-27 18:07:19 +0400
commit130668b12fe2373fe8c4ea6f32ec94fb7dad679d (patch)
tree0eef219e36d1101a5c2f959594b2e3a55ed1acb8 /source/blender/bmesh/intern/bmesh_private.h
parente17bf02c2dcf6e51176eafc5bbe77171bc7014c5 (diff)
minor bmesh api naming edits.
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_private.h')
-rw-r--r--source/blender/bmesh/intern/bmesh_private.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/bmesh/intern/bmesh_private.h b/source/blender/bmesh/intern/bmesh_private.h
index c6237743541..730078a5f4d 100644
--- a/source/blender/bmesh/intern/bmesh_private.h
+++ b/source/blender/bmesh/intern/bmesh_private.h
@@ -40,13 +40,13 @@ struct Link;
struct BMLoop;
/* returns positive nonzero on error */
-int bmesh_check_element(BMesh *bm, void *element, const char htype);
+int bmesh_element_check(BMesh *bm, void *element, const char htype);
#define BM_CHECK_ELEMENT(bm, el) \
- if (bmesh_check_element(bm, el, ((BMHeader *)el)->htype)) { \
+ if (bmesh_element_check(bm, el, ((BMHeader *)el)->htype)) { \
printf("check_element failure, with code %i on line %i in file\n" \
" \"%s\"\n\n", \
- bmesh_check_element(bm, el, ((BMHeader *)el)->htype), \
+ bmesh_element_check(bm, el, ((BMHeader *)el)->htype), \
__LINE__, __FILE__); \
}
@@ -79,9 +79,9 @@ int bmesh_get_filter_argtype(int type);
/* newedgeflag sets a flag layer flag, obviously not the header flag. */
void BM_face_triangulate(BMesh *bm, BMFace *f, float (*projectverts)[3],
const short newedge_oflag, const short newface_oflag, BMFace **newfaces);
-void bmesh_update_face_normal(struct BMesh *bm, struct BMFace *f, float no[3],
+void bmesh_face_normal_update(struct BMesh *bm, struct BMFace *f, float no[3],
float (*projectverts)[3]);
-void bmesh_update_face_normal_vertex_cos(struct BMesh *bm, struct BMFace *f, float no[3],
+void bmesh_face_normal_update_vertex_cos(struct BMesh *bm, struct BMFace *f, float no[3],
float (*projectverts)[3], float (*vertexCos)[3]);
void compute_poly_plane(float (*verts)[3], int nverts);