1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-08-23 00:20:14 +03:00

sch2fig/fig.c (fig_label): support direction 3 (down)

This commit is contained in:
Werner Almesberger 2016-07-25 01:57:47 -03:00
parent a0c4aedd32
commit fe15498ef1

View File

@ -88,24 +88,30 @@ void fig_label(int x, int y, const char *s, int dir, int dim,
.hor = 0,
.vert = text_min,
};
int dy;
int dx, dy;
switch (dir) {
case 0:
case 0: /* right */
txt.rot = 0;
txt.hor = text_min;
dy = 1;
break;
case 2:
case 2: /* left */
txt.rot = 0;
txt.hor = text_max;
dy = 1;
break;
case 3: /* down */
txt.rot = 90;
txt.hor = text_max;
dx = -1;
break;
default:
assert(0);
}
txt.y -= dy * LABEL_OFFSET;
txt.x += dx * LABEL_OFFSET;
text_fig(&txt, COLOR_LABEL, LAYER_LABEL);
}