aboutsummaryrefslogtreecommitdiff
path: root/src/libdraw/border.c
blob: 52eaa152435587be91ff2ce06b88b124cc8cb204 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include <u.h>
#include <libc.h>
#include <draw.h>

void
borderop(Image *im, Rectangle r, int i, Image *color, Point sp, Drawop op)
{
	if(i < 0){
		r = insetrect(r, i);
		sp = addpt(sp, Pt(i,i));
		i = -i;
	}
	drawop(im, Rect(r.min.x, r.min.y, r.max.x, r.min.y+i),
		color, nil, sp, op);
	drawop(im, Rect(r.min.x, r.max.y-i, r.max.x, r.max.y),
		color, nil, Pt(sp.x, sp.y+Dy(r)-i), op);
	drawop(im, Rect(r.min.x, r.min.y+i, r.min.x+i, r.max.y-i),
		color, nil, Pt(sp.x, sp.y+i), op);
	drawop(im, Rect(r.max.x-i, r.min.y+i, r.max.x, r.max.y-i),
		color, nil, Pt(sp.x+Dx(r)-i, sp.y+i), op);
}

void
border(Image *im, Rectangle r, int i, Image *color, Point sp)
{
	borderop(im, r, i, color, sp, SoverD);
}