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-06-06 10:02:46 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-06-06 10:02:46 +0400
commita6b505ef0b2e23abe5c2ba52b78e0b411d746b7a (patch)
tree1dc3684a9519365f51b1880b92c3a3beb409c8b9 /source/blender/blenlib/intern/math_vector.c
parent0a361247ff3956906d67c28413d65bcc28f1a814 (diff)
style cleanup
Diffstat (limited to 'source/blender/blenlib/intern/math_vector.c')
-rw-r--r--source/blender/blenlib/intern/math_vector.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/math_vector.c b/source/blender/blenlib/intern/math_vector.c
index 82b295d39b2..78266c47170 100644
--- a/source/blender/blenlib/intern/math_vector.c
+++ b/source/blender/blenlib/intern/math_vector.c
@@ -133,7 +133,7 @@ void mid_v3_v3v3v3(float v[3], const float v1[3], const float v2[3], const float
* Specialized function for calculating normals.
* fastpath for:
*
-* \code{.c}
+ * \code{.c}
* add_v3_v3v3(r, a, b);
* normalize_v3(r)
* mul_v3_fl(r, angle_normalized_v3v3(a, b) / M_PI_2);