I have a struct for holding a 4D vector
struct { float x; float y; float z; float w; } vector4f
And I\'m using a library th
It might work but it is not portable, the compiler is free to align things so that one float does not neccessarily immediately follow the other.