style cleanup: braces with multi-line statements, also add some comments.

This commit is contained in:
2013-03-01 14:47:06 +00:00
parent 462e4bee87
commit 0ac07404ba
17 changed files with 48 additions and 23 deletions

View File

@@ -908,6 +908,12 @@ int BKE_mesh_validate_dm(DerivedMesh *dm)
TRUE, FALSE);
}
/**
* Calculate edges from polygons
*
* \param mesh The mesh to add edges into
* \param update When true create new edges co-exist
*/
void BKE_mesh_calc_edges(Mesh *mesh, int update)
{
CustomData edata;