writing normal customdata was failing because vec3f type wasn't stored in SDNA.

This commit is contained in:
Campbell Barton
2011-05-09 05:55:41 +00:00
parent a70e49163a
commit c8e2df0128

View File

@@ -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;