-
Notifications
You must be signed in to change notification settings - Fork 87
/
mypaint-rectangle.c
58 lines (51 loc) · 1.94 KB
/
mypaint-rectangle.c
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/* libmypaint - The MyPaint Brush Library
* Copyright (C) 2008 Martin Renold <[email protected]>
* Copyright (C) 2012 Jon Nordby <[email protected]>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "config.h"
#include "mypaint-rectangle.h"
#include <stdlib.h>
#include <string.h>
void *memdup(const void *src, size_t len)
{
void *p = malloc(len);
if (p)
memcpy(p, src, len);
return p;
}
MyPaintRectangle *
mypaint_rectangle_copy(MyPaintRectangle *self)
{
return (MyPaintRectangle *)memdup(self, sizeof(MyPaintRectangle));
}
void
mypaint_rectangle_expand_to_include_point(MyPaintRectangle *r, int x, int y)
{
if (r->width == 0) {
r->width = 1; r->height = 1;
r->x = x; r->y = y;
} else {
if (x < r->x) { r->width += r->x-x; r->x = x; } else
if (x >= r->x+r->width) { r->width = x - r->x + 1; }
if (y < r->y) { r->height += r->y-y; r->y = y; } else
if (y >= r->y+r->height) { r->height = y - r->y + 1; }
}
}
void
mypaint_rectangle_expand_to_include_rect(MyPaintRectangle *r, MyPaintRectangle *other)
{
mypaint_rectangle_expand_to_include_point(r, other->x, other->y);
mypaint_rectangle_expand_to_include_point(r, other->x + other->width - 1, other->y + other->height - 1);
}