From c8e2df0128d73f4604db2d101163de0643c18822 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 9 May 2011 05:55:41 +0000 Subject: [PATCH] writing normal customdata was failing because vec3f type wasn't stored in SDNA. --- source/blender/makesdna/DNA_vec_types.h | 4 ++-- 1 file 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;