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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2012-09-30 17:16:55 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2012-09-30 17:16:55 +0400
commite91f33101ff0999e07f7ce941f31dca793d954e7 (patch)
tree83c0d933f2ac1d063e2c57aaded58fd09d8d5712 /source/blender/makesrna/intern/rna_mesh.c
parenta42ba82f638e481d7fd3c3ed2ba05c331ef6717e (diff)
parent818b2e81da7d5f3e04439e3b4fef5c7ce5263b5b (diff)
Merged changes in the trunk up to revision 50956.
Conflicts resolved: source/blender/editors/interface/resources.c
Diffstat (limited to 'source/blender/makesrna/intern/rna_mesh.c')
-rw-r--r--source/blender/makesrna/intern/rna_mesh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_mesh.c b/source/blender/makesrna/intern/rna_mesh.c
index ce86f90f018..df73fcd96dd 100644
--- a/source/blender/makesrna/intern/rna_mesh.c
+++ b/source/blender/makesrna/intern/rna_mesh.c
@@ -224,7 +224,7 @@ static void rna_MeshPolygon_normal_get(PointerRNA *ptr, float *values)
MPoly *mp = (MPoly *)ptr->data;
/* BMESH_TODO: might be faster to look for a CD_NORMALS layer and use that */
- mesh_calc_poly_normal(mp, me->mloop + mp->loopstart, me->mvert, values);
+ BKE_mesh_calc_poly_normal(mp, me->mloop + mp->loopstart, me->mvert, values);
}
static float rna_MeshPolygon_area_get(PointerRNA *ptr)