I'd appreciate any help with converting next C-structure to Delphi
struct MATRIX
{
union
{
struct
{
float _11, _12, _13, _14;
float _21, _22, _23, _24;
float _31, _32, _33, _34;
float _41, _42, _43, _44;
};
float m[4][4];
};
};
I've read Rudy's article about converting http://rvelthuis.de/articles/articles-convert.html but still can't figure out what to do with anonymous struct inside the union..
Thanks for any help or recommendations.