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>2018-04-25 13:25:47 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-04-25 13:25:47 +0300
commit9a7f963a02aea2300f2f740c004c398db2a3dac3 (patch)
tree2a0b79de370ecb2e7cc962861357002c69613c94 /source/blender/modifiers
parentf1bc0aeddedacf68182164dde5d4674d11aba6c9 (diff)
Cleanup: comments
Diffstat (limited to 'source/blender/modifiers')
-rw-r--r--source/blender/modifiers/intern/MOD_array.c4
-rw-r--r--source/blender/modifiers/intern/MOD_mirror.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/modifiers/intern/MOD_array.c b/source/blender/modifiers/intern/MOD_array.c
index b781c47ac56..47c5e9da864 100644
--- a/source/blender/modifiers/intern/MOD_array.c
+++ b/source/blender/modifiers/intern/MOD_array.c
@@ -558,8 +558,8 @@ static DerivedMesh *arrayModifier_doArray(
DM_copy_loop_data(dm, result, 0, 0, chunk_nloops);
DM_copy_poly_data(dm, result, 0, 0, chunk_npolys);
- /* subsurf for eg wont have mesh data in the
- * now add mvert/medge/mface layers */
+ /* Subsurf for eg wont have mesh data in the custom data arrays.
+ * now add mvert/medge/mpoly layers. */
if (!CustomData_has_layer(&dm->vertData, CD_MVERT)) {
dm->copyVertArray(dm, result_dm_verts);
diff --git a/source/blender/modifiers/intern/MOD_mirror.c b/source/blender/modifiers/intern/MOD_mirror.c
index 1524dbac480..875a1e8d468 100644
--- a/source/blender/modifiers/intern/MOD_mirror.c
+++ b/source/blender/modifiers/intern/MOD_mirror.c
@@ -152,8 +152,8 @@ static DerivedMesh *doMirrorOnAxis(MirrorModifierData *mmd,
DM_copy_poly_data(dm, result, 0, 0, maxPolys);
- /* subsurf for eg wont have mesh data in the */
- /* now add mvert/medge/mface layers */
+ /* Subsurf for eg wont have mesh data in the custom data arrays.
+ * now add mvert/medge/mpoly layers. */
if (!CustomData_has_layer(&dm->vertData, CD_MVERT)) {
dm->copyVertArray(dm, CDDM_get_verts(result));