comparison src/shape_rect.c @ 34:07c523c799f4

Fix bug of relative path command
author Thinker K.F. Li <thinker@branda.to>
date Wed, 06 Aug 2008 01:10:32 +0800
parents d82749f77108
children 581a03196093
comparison
equal deleted inserted replaced
33:d82749f77108 34:07c523c799f4
4 4
5 typedef struct _sh_rect { 5 typedef struct _sh_rect {
6 shape_t shape; 6 shape_t shape;
7 co_aix x, y; 7 co_aix x, y;
8 co_aix rx, ry; 8 co_aix rx, ry;
9 co_aix d_x, d_y;
10 co_aix d_rx, d_ry;
9 } sh_rect_t; 11 } sh_rect_t;
10 12
13 extern void sh_rect_transform(shape_t *shape) {
14 sh_rect_t *rect = (sh_rect_t *)shape;
15
16 }