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/blenlib/intern/math_geom_inline.c')
-rw-r--r--source/blender/blenlib/intern/math_geom_inline.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenlib/intern/math_geom_inline.c b/source/blender/blenlib/intern/math_geom_inline.c
index 9031d52cf4c..634e68d0ccf 100644
--- a/source/blender/blenlib/intern/math_geom_inline.c
+++ b/source/blender/blenlib/intern/math_geom_inline.c
@@ -49,7 +49,7 @@ MINLINE void mul_sh_fl(float r[9], const float f)
{
int i;
- for(i=0; i<9; i++)
+ for (i=0; i<9; i++)
r[i] *= f;
}
@@ -57,7 +57,7 @@ MINLINE void add_sh_shsh(float r[9], const float a[9], const float b[9])
{
int i;
- for(i=0; i<9; i++)
+ for (i=0; i<9; i++)
r[i]= a[i] + b[i];
}
@@ -66,7 +66,7 @@ MINLINE float dot_shsh(float a[9], float b[9])
float r= 0.0f;
int i;
- for(i=0; i<9; i++)
+ for (i=0; i<9; i++)
r += a[i]*b[i];
return r;