From 33623ba3a363aa93f3f6c68b92ab228a7c8b2959 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 25 Jan 2010 23:12:02 +0000 Subject: panel for adjusting the active vertex groups weights --- source/blender/makesdna/DNA_vec_types.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'source/blender/makesdna/DNA_vec_types.h') diff --git a/source/blender/makesdna/DNA_vec_types.h b/source/blender/makesdna/DNA_vec_types.h index 264ad348e92..4dc3c44bc04 100644 --- a/source/blender/makesdna/DNA_vec_types.h +++ b/source/blender/makesdna/DNA_vec_types.h @@ -38,14 +38,16 @@ typedef struct vec2s { short x, y; } vec2s; -typedef struct vec2i { - int x, y; -} vec2i; - typedef struct vec2f { float x, y; } vec2f; +/* not used at the moment */ +#if 0 +typedef struct vec2i { + int x, y; +} vec2i; + typedef struct vec2d { double x, y; } vec2d; @@ -73,6 +75,7 @@ typedef struct vec4f { typedef struct vec4d { double x, y, z, w; } vec4d; +#endif typedef struct rcti { int xmin, xmax; -- cgit v1.2.3