Je peux le faire en c ++ / g ++:
struct vec3 {
union {
struct {
float x, y, z;
};
float xyz[3];
};
};
Ensuite,
vec3 v;
assert(&v.xyz[0] == &v.x);
assert(&v.xyz[1] == &v.y);
assert(&v.xyz[2] == &v.z);
marchera.
Comment fait-on cela en c avec gcc? j'ai
typedef struct {
union {
struct {
float x, y, z;
};
float xyz[3];
};
} Vector3;
Mais je reçois des erreurs tout autour, en particulier
line 5: warning: declaration does not declare anything
line 7: warning: declaration does not declare anything