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>2011-03-08 10:31:42 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-03-08 10:31:42 +0300
commitc7609a27b3625feef2749028fe6a220a0ec83918 (patch)
treeff9999874b15bab2b9d00b1480e6612a8dbb0e37 /source/blender/blenlib/intern/math_rotation.c
parent97edca3bc9441eb5c99ed56e7d67b083931215b0 (diff)
remove unused RegionView3D retopo pointer and set quat printing to const args.
Diffstat (limited to 'source/blender/blenlib/intern/math_rotation.c')
-rw-r--r--source/blender/blenlib/intern/math_rotation.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/math_rotation.c b/source/blender/blenlib/intern/math_rotation.c
index 90614402b0d..d9afd9f3cd4 100644
--- a/source/blender/blenlib/intern/math_rotation.c
+++ b/source/blender/blenlib/intern/math_rotation.c
@@ -635,7 +635,7 @@ void tri_to_quat(float quat[4], const float v1[3], const float v2[3], const floa
mul_qt_qtqt(quat, q1, q2);
}
-void print_qt(char *str, float q[4])
+void print_qt(const char *str, const float q[4])
{
printf("%s: %.3f %.3f %.3f %.3f\n", str, q[0], q[1], q[2], q[3]);
}