From 722be28d68bee132f54c3bcd984caf274197c205 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 26 Aug 2011 22:37:20 +0000 Subject: sub_v4_v4v4 was taking float[3] arguments. --- source/blender/blenlib/BLI_math_vector.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (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 decfa22c3e6..c8b598a1e85 100644 --- a/source/blender/blenlib/BLI_math_vector.h +++ b/source/blender/blenlib/BLI_math_vector.h @@ -99,7 +99,7 @@ MINLINE float dot_v3v3(const float a[3], const float b[3]); MINLINE float cross_v2v2(const float a[2], const float b[2]); MINLINE void cross_v3_v3v3(float r[3], const float a[3], const float b[3]); -MINLINE void star_m3_v3(float R[3][3],float a[3]); +MINLINE void star_m3_v3(float rmat[3][3],float a[3]); /*********************************** Length **********************************/ @@ -133,7 +133,7 @@ MINLINE int is_zero_v3(const float a[3]); MINLINE int is_zero_v4(const float a[4]); MINLINE int is_one_v3(const float a[3]); -MINLINE int equals_v2v2(const float *v1, const float *v2); +MINLINE int equals_v2v2(const float v1[2], const float v2[2]); MINLINE int equals_v3v3(const float a[3], const float b[3]); MINLINE int compare_v3v3(const float a[3], const float b[3], const float limit); MINLINE int compare_len_v3v3(const float a[3], const float b[3], const float limit); -- cgit v1.2.3