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>2010-01-26 02:12:02 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-01-26 02:12:02 +0300
commit33623ba3a363aa93f3f6c68b92ab228a7c8b2959 (patch)
tree9a201fc43137b861ba8d73aeedc4d52e7d7d2330 /source/blender/makesdna/DNA_vec_types.h
parent9cd3ab1e0c50bfa7f2d364730b43b0e848b630a9 (diff)
panel for adjusting the active vertex groups weights
Diffstat (limited to 'source/blender/makesdna/DNA_vec_types.h')
-rw-r--r--source/blender/makesdna/DNA_vec_types.h11
1 files changed, 7 insertions, 4 deletions
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;