comparison src/shape_rect.c @ 33:d82749f77108

Fix bug of demo and remove *_fill() and *_stroke(). - logical error in X_main.c.
author Thinker K.F. Li <thinker@branda.to>
date Wed, 06 Aug 2008 00:40:04 +0800
parents
children 07c523c799f4
comparison
equal deleted inserted replaced
32:69c8e264890d 33:d82749f77108
1 #include <stdio.h>
2 #include "mb_types.h"
3 #include "shapes.h"
4
5 typedef struct _sh_rect {
6 shape_t shape;
7 co_aix x, y;
8 co_aix rx, ry;
9 } sh_rect_t;
10