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-03-11 19:27:08 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-11 19:27:08 +0400
commit19400d418d4ac5e3b064dd41f825d2a257472127 (patch)
treefd343ae5b036e2fca043e578d4a5db578c2c28ec /source/blender/bmesh/intern/bmesh_polygon.h
parentfa169fdcb69ef3310b747c9433eddbc4b0435a95 (diff)
fix for debug assignment left in from own commit r44778
also removed private face normal update functions - they were same as public.
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_polygon.h')
-rw-r--r--source/blender/bmesh/intern/bmesh_polygon.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/bmesh/intern/bmesh_polygon.h b/source/blender/bmesh/intern/bmesh_polygon.h
index 49fe2d7a809..3c8f3dc3339 100644
--- a/source/blender/bmesh/intern/bmesh_polygon.h
+++ b/source/blender/bmesh/intern/bmesh_polygon.h
@@ -32,7 +32,8 @@ 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]);
void BM_face_normal_update(BMesh *bm, BMFace *f);
-void BM_face_normal_update_vcos(BMesh *bm, BMFace *f, float no[3], float (*vertexCos)[3]);
+void BM_face_normal_update_vcos(BMesh *bm, BMFace *f, float no[3],
+ float const (*vertexCos)[3]);
void BM_edge_normals_update(BMesh *bm, BMEdge *e);