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>2013-01-22 15:23:05 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-01-22 15:23:05 +0400
commit3406bafc59220a592c2e0d68a1f6a6b348a2212e (patch)
tree91b426f68c12acfb2e7296e7fb625683ec9b12c3 /source/blender/modifiers/intern/MOD_laplaciansmooth.c
parente11d22a6b751c750c40226cb027e7805adb7d4e4 (diff)
comments for RNA_def_property_ui_range() and clamp some out-of-range values.
Diffstat (limited to 'source/blender/modifiers/intern/MOD_laplaciansmooth.c')
-rw-r--r--source/blender/modifiers/intern/MOD_laplaciansmooth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/modifiers/intern/MOD_laplaciansmooth.c b/source/blender/modifiers/intern/MOD_laplaciansmooth.c
index a18d0e22c5c..631b875dc8d 100644
--- a/source/blender/modifiers/intern/MOD_laplaciansmooth.c
+++ b/source/blender/modifiers/intern/MOD_laplaciansmooth.c
@@ -586,7 +586,7 @@ static void laplaciansmoothModifier_do(
init_laplacian_matrix(sys);
- for (iter = 0; iter < smd->repeat; iter++) {
+ for (iter = 0; iter < smd->repeat; iter++) {
nlBegin(NL_SYSTEM);
for (i = 0; i < numVerts; i++) {
nlSetVariable(0, i, vertexCos[i][0]);
@@ -648,7 +648,7 @@ static void laplaciansmoothModifier_do(
}
}
- if (iter == 0){
+ if (iter == 0) {
fill_laplacian_matrix(sys);
}