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-12-17 22:07:49 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-12-17 22:07:49 +0400
commita80278a1912c129d6176743a1540d9c918a29f51 (patch)
tree30c5d924ee0360ad738aa689ae3e4ef695bd8324 /source/blender/blenkernel/intern/implicit.c
parentf034e69f0c3d247c5fb9343bceb7c8a249e43c90 (diff)
Code Cleanup: comment unused functions
Diffstat (limited to 'source/blender/blenkernel/intern/implicit.c')
-rw-r--r--source/blender/blenkernel/intern/implicit.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/implicit.c b/source/blender/blenkernel/intern/implicit.c
index fce6ed9d6c6..ef21c3fdb24 100644
--- a/source/blender/blenkernel/intern/implicit.c
+++ b/source/blender/blenkernel/intern/implicit.c
@@ -172,7 +172,7 @@ DO_INLINE void mul_fvectorT_fvectorS(float to[3][3], float vectorA[3], float vec
mul_fvector_S(to[2], to[2], aS);
}
-
+#if 0
/* printf vector[3] on console: for debug output */
static void print_fvector(float m3[3])
{
@@ -190,6 +190,8 @@ DO_INLINE void print_lfvector(float (*fLongVector)[3], unsigned int verts)
print_fvector(fLongVector[i]);
}
}
+#endif
+
/* create long vector */
DO_INLINE lfVector *create_lfvector(unsigned int verts)
{