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>2014-05-14 00:37:56 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-05-14 00:37:56 +0400
commit5cc1e03540fbc68d3fec35af0fc3eeee8a00cf9a (patch)
tree9cd6a68593c14832f3c7a7577785f02943e97e1f /source/blender/modifiers
parent33df6aa12ea6f627b5b238e6eec64cffb2acdbd4 (diff)
Code cleanup: indentation
Diffstat (limited to 'source/blender/modifiers')
-rw-r--r--source/blender/modifiers/intern/MOD_boolean_util.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/modifiers/intern/MOD_boolean_util.c b/source/blender/modifiers/intern/MOD_boolean_util.c
index 7a1c7bbc233..4b6d960584c 100644
--- a/source/blender/modifiers/intern/MOD_boolean_util.c
+++ b/source/blender/modifiers/intern/MOD_boolean_util.c
@@ -433,7 +433,7 @@ static void exporter_SetVert(ExportMeshData *export_data,
dm_orig = which_dm(export_data, which_orig_mesh);
if (dm_orig) {
BLI_assert(orig_vert_index >= 0 && orig_vert_index < dm_orig->getNumVerts(dm_orig));
- mvert[vert_index] = which_mvert(export_data, which_orig_mesh) [orig_vert_index];
+ mvert[vert_index] = which_mvert(export_data, which_orig_mesh)[orig_vert_index];
CustomData_copy_data(&dm_orig->vertData, &dm->vertData, orig_vert_index, vert_index, 1);
}
@@ -467,7 +467,7 @@ static void exporter_SetEdge(ExportMeshData *export_data,
if (dm_orig) {
BLI_assert(orig_edge_index >= 0 && orig_edge_index < dm_orig->getNumEdges(dm_orig));
- *medge = which_medge(export_data, which_orig_mesh) [orig_edge_index];
+ *medge = which_medge(export_data, which_orig_mesh)[orig_edge_index];
/* Copy all edge layers, including medge. */
CustomData_copy_data(&dm_orig->edgeData, &dm->edgeData, orig_edge_index, edge_index, 1);
@@ -556,7 +556,7 @@ static void exporter_SetPoly(ExportMeshData *export_data,
BLI_assert(orig_poly_index >= 0 && orig_poly_index < dm_orig->getNumPolys(dm_orig));
/* Copy all poly layers, including mpoly. */
- *mpoly = which_mpoly(export_data, which_orig_mesh) [orig_poly_index];
+ *mpoly = which_mpoly(export_data, which_orig_mesh)[orig_poly_index];
CustomData_copy_data(&dm_orig->polyData, &dm->polyData, orig_poly_index, poly_index, 1);
/* Set material of the curren poly.
@@ -625,7 +625,7 @@ static void exporter_SetLoop(ExportMeshData *export_data,
BLI_assert(orig_loop_index >= 0 && orig_loop_index < dm_orig->getNumLoops(dm_orig));
/* Copy all loop layers, including mloop. */
- *mloop = which_mloop(export_data, which_orig_mesh) [orig_loop_index];
+ *mloop = which_mloop(export_data, which_orig_mesh)[orig_loop_index];
CustomData_copy_data(&dm_orig->loopData, &dm->loopData, orig_loop_index, loop_index, 1);
}