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:
Diffstat (limited to 'source/blender/freestyle/intern/geometry/normal_cycle.cpp')
-rw-r--r--source/blender/freestyle/intern/geometry/normal_cycle.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/freestyle/intern/geometry/normal_cycle.cpp b/source/blender/freestyle/intern/geometry/normal_cycle.cpp
index 2f0aa268c9f..63195b24386 100644
--- a/source/blender/freestyle/intern/geometry/normal_cycle.cpp
+++ b/source/blender/freestyle/intern/geometry/normal_cycle.cpp
@@ -82,15 +82,15 @@ void NormalCycle::end()
double l2 = ::fabs(eigen_value_[2]);
if (l1 > l0) {
- ogf_swap(l0 , l1 );
+ ogf_swap(l0, l1 );
ogf_swap(i_[0], i_[1]);
}
if (l2 > l1) {
- ogf_swap(l1 , l2 );
+ ogf_swap(l1, l2 );
ogf_swap(i_[1], i_[2]);
}
if (l1 > l0) {
- ogf_swap(l0 , l1 );
+ ogf_swap(l0, l1 );
ogf_swap(i_[0], i_[1]);
}
}