28 struct box const* i_box);
32 struct box const* i_box1,
33 struct box const* i_box2);
37 struct box const* i_box1,
38 struct box const* i_box2);
int m_pos_y
Definition: box.h:15
unsigned int m_len_y
Definition: box.h:17
int m_pos_x
Definition: box.h:14
int box_contains(int const i_pos_x, int const i_pos_y, struct box const *i_box)
test if point is within box
Definition: box.c:13
int box_contains_box(struct box const *i_box1, struct box const *i_box2)
test if a box is contained in another
Definition: box.c:69
unsigned int m_len_x
Definition: box.h:16
int box_equal(struct box const *i_box1, struct box const *i_box2)
test if box is equal to another
Definition: box.c:88
defines a rectangular region
Definition: box.h:12