#include "split.h"
#include "structures.h"
#include "callcpp.h"
Go to the source code of this file.
Function Documentation
void delete_split |
( |
SPLIT * |
split | ) |
|
Definition at line 53 of file split.cpp.
{
if (split) {
free_split(split);
}
}
Definition at line 65 of file split.cpp.
{
this_edgept->
next = next;
this_edgept->
prev = prev;
prev->
next = this_edgept;
next->
prev = this_edgept;
return (this_edgept);
}
makestructure |
( |
newsplit |
, |
|
|
free_split |
, |
|
|
SPLIT |
|
|
) |
| |
void print_split |
( |
SPLIT * |
split | ) |
|
void remove_edgept |
( |
EDGEPT * |
point | ) |
|
void split_outline |
( |
EDGEPT * |
join_point1, |
|
|
EDGEPT * |
join_point2 |
|
) |
| |
Definition at line 136 of file split.cpp.
{
assert (join_point1 != join_point2);
temp2 = join_point2->
next;
temp1 = join_point1->
next;
join_point1->
pos.
y, temp1, join_point2);
}
Definition at line 158 of file split.cpp.
{
assert (p1 != p2);
delete tmp1;
delete tmp2;
}
Variable Documentation
bool wordrec_display_splits = 0 |
"Display splits"
Definition at line 39 of file split.cpp.