I can do this in c++/g++:
struct vec3 {
union {
struct {
float x, y, z;
};
float xyz[3];
};
};
Then,
vec3 v;
assert(&v.xyz[0] == &v.x);
assert(&v.xyz[1] == &v.y);
assert(&v.xyz[2] == &v.z);
will work.
How does one do this in c with gcc? I have
typedef struct {
union {
struct {
float x, y, z;
};
float xyz[3];
};
} Vector3;
But I get errors all around, specifically
line 5: warning: declaration does not declare anything
line 7: warning: declaration does not declare anything
-Wall. GCC should give you warnings about non-portable anonymous structs. – greyfade Dec 29 '09 at 4:04union vec3 { ... }), and you should probably name thexyzmember something other thanxyz. Something likeeorcompsworks fine. – bobobobo Feb 24 '12 at 16:53