This is probably something really stupid that I'm doing wrong, but I can't figure out what it is.
I have a struct PDRect, the members of which are a PDPoint and PDSize:
typedef struct {
GLfloat x, y;
} PDPoint;
typedef struct {
GLfloat width, height;
} PDSize;
typedef struct {
PDPoint origin;
PDSize size;
} PDRect;
When I instantiate one, like so:
PDRect rect = {
.origin = {
.x = 0,
.y = 0
},
.size = {
.height = .5,
.width = .5
}
};
the debugger says that rect.origin.width and rect.origin.height both exist and equal 0, and rect.size.x and rect.size.y both exist and equal .5. I don't know why this is happening.
EDIT FOR CLARITY: My confusion is why rect.origin (which is a PDPoint) has height and width values associated with it and rect.size (which is a PDSize) has x and y values associated with it. Shouldn't the origin just have x and y and size just have height and width?
EDIT: It actually fixed it to have them declared non-anonymously, i.e.:
typedef struct _PDPoint {
GLfloat x, y;
} PDPoint;
typedef struct _PDSize {
GLfloat width, height;
} PDSize;
typedef struct _PDRect {
PDPoint origin;
PDSize size;
} PDRect;
I'm still not sure I actually understand why that would make a difference, but it seems to have resolved the issue.
originshouldn't have awidthandheightvalue at all, and size shouldn't have anxoryvalue at all, should it? – eyebrowsoffire Nov 18 '12 at 19:58printfthese values? – Nicolás Nov 18 '12 at 21:30