Improve inline doc

This commit is contained in:
hasufell 2014-05-13 20:26:36 +02:00
parent bb1e4cb38d
commit c6e84bb7f5
No known key found for this signature in database
GPG Key ID: 220CD1C5BDEED020
1 changed files with 2 additions and 2 deletions

View File

@ -439,10 +439,10 @@ HE_obj *parse_obj(char const * const obj_string)
}
/* find pairs */
for (uint32_t i = 0; i < ec; i++) {
for (uint32_t i = 0; i < ec; i++) { /* for all edges */
uint32_t eac = edges[i].vert->eac;
for (uint32_t j = 0; j < eac; j++) {
for (uint32_t j = 0; j < eac; j++) { /* for all potential pairs */
if (edges[i].vert->edge_array[j] &&
(edges[i].next->vert ==
edges[i].vert->edge_array[j]->vert)) {