In GDK there's an object called GdkRectangle that is used to draw rectangles. Is there a similar object for ellipses?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

No. Actually, GdkRectangle is not used to draw rectangles directly, it is merely used to specify rectangle position. For instance, gdk_draw_rectangle() doesn't even accept any GdkRectangle argument. To draw an ellipse, you could use gdk_draw_arc().

Note that using GDK for drawing is quite outdated. You could use Cairo and functions cairo_rectangle() and cairo_arc() for this.

link|improve this answer
Okay, but I need to a linked list of drawn rectangles so GdkRectangle comes in handy. Does GdkRectangle have a counterpart for ellipses? I cannot use Cairo since this is part of a school assignment where we have to build on existing code. – Pieter May 22 '10 at 16:42
@Pieter: No, there is no direct analogue. Nothing precludes you from defining your own structure, though. – doublep May 22 '10 at 17:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.