From c7609a27b3625feef2749028fe6a220a0ec83918 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 8 Mar 2011 07:31:42 +0000 Subject: remove unused RegionView3D retopo pointer and set quat printing to const args. --- source/blender/blenlib/intern/math_rotation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/blenlib/intern/math_rotation.c') 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]); } -- cgit v1.2.3