#include "blobs.h"
#include "oldlist.h"
Go to the source code of this file.
| #define clone_split |
( |
|
dest, |
|
|
|
source |
|
) |
| |
Value:if (source) \
(dest) =
new_split ((source)->point1, (source)->point2); \
else \
SPLIT * new_split(EDGEPT *point1, EDGEPT *point2)
Definition at line 61 of file split.h.
| void delete_split |
( |
SPLIT * |
split | ) |
|
Definition at line 65 of file split.cpp.
69 this_edgept->
pos.
x = x;
70 this_edgept->
pos.
y = y;
72 this_edgept->
next = next;
73 this_edgept->
prev = prev;
74 prev->
next = this_edgept;
75 next->
prev = this_edgept;
| void print_split |
( |
SPLIT * |
split | ) |
|
Definition at line 121 of file split.cpp.
void cprintf(const char *format,...)
| void remove_edgept |
( |
EDGEPT * |
point | ) |
|
| void split_outline |
( |
EDGEPT * |
join_point1, |
|
|
EDGEPT * |
join_point2 |
|
) |
| |
Definition at line 136 of file split.cpp.
141 assert (join_point1 != join_point2);
143 temp2 = join_point2->
next;
144 temp1 = join_point1->
next;
147 join_point1->
pos.
y, temp1, join_point2);
EDGEPT * make_edgept(int x, int y, EDGEPT *next, EDGEPT *prev)
| bool wordrec_display_splits = 0 |
"Display splits"
Definition at line 39 of file split.cpp.