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>2011-05-09 09:55:41 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-05-09 09:55:41 +0400
commitc8e2df0128d73f4604db2d101163de0643c18822 (patch)
treef31ed32d9d5ee0acc3aae88ea318c86335cf1042 /source/blender/makesdna/DNA_vec_types.h
parenta70e49163a6ac40e283280ced73f6e42fceba9af (diff)
writing normal customdata was failing because vec3f type wasn't stored in SDNA.
Diffstat (limited to 'source/blender/makesdna/DNA_vec_types.h')
-rw-r--r--source/blender/makesdna/DNA_vec_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_vec_types.h b/source/blender/makesdna/DNA_vec_types.h
index 2d7804c3d1d..d4f68b21a14 100644
--- a/source/blender/makesdna/DNA_vec_types.h
+++ b/source/blender/makesdna/DNA_vec_types.h
@@ -61,11 +61,11 @@ typedef struct vec2d {
typedef struct vec3i {
int x, y, z;
} vec3i;
-
+*/
typedef struct vec3f {
float x, y, z;
} vec3f;
-
+/*
typedef struct vec3d {
double x, y, z;
} vec3d;