misc minor changes

- make cmake osx use of -ftemplate-depth match scons.
- use array size within sizeof(), more compact.
- replace AT with __func__ where the function is unique enough.
- BLI_box_pack_2D -> 2d to match other functions.
- rename new mesh normal calculation to mesh.calc_normals_split()
This commit is contained in:
2013-09-10 19:23:39 +00:00
parent ba13c16065
commit 92d94ccb08
8 changed files with 24 additions and 17 deletions

View File

@@ -1493,7 +1493,7 @@ static PyObject *M_Geometry_box_pack_2d(PyObject *UNUSED(self), PyObject *boxlis
}
/* Non Python function */
BLI_box_pack_2D(boxarray, len, &tot_width, &tot_height);
BLI_box_pack_2d(boxarray, len, &tot_width, &tot_height);
boxPack_ToPyObject(boxlist, &boxarray);
}