From 53afd198084e4bca72d6694708d801a799a2f76f Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 8 Feb 2011 03:37:49 +0000 Subject: fix [#25975] Quaternion/Vector.negated() isn't available theres no need for value.negated(), better use -vec / -quat. however -quat didn't exist. --- source/blender/blenlib/BLI_math_vector.h | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender/blenlib/BLI_math_vector.h') diff --git a/source/blender/blenlib/BLI_math_vector.h b/source/blender/blenlib/BLI_math_vector.h index 16b8ff8e472..dcb9311baa0 100644 --- a/source/blender/blenlib/BLI_math_vector.h +++ b/source/blender/blenlib/BLI_math_vector.h @@ -85,6 +85,7 @@ MINLINE void madd_v4_v4fl(float r[4], const float a[4], float f); MINLINE void negate_v3(float r[3]); MINLINE void negate_v3_v3(float r[3], const float a[3]); MINLINE void negate_v4(float r[4]); +MINLINE void negate_v4_v4(float r[4], const float a[3]); MINLINE float dot_v2v2(const float a[2], const float b[2]); MINLINE float dot_v3v3(const float a[3], const float b[3]); -- cgit v1.2.3