INNER CODE UNIT · C
side1
clover-moe/spearmint · code/botlib/be_aas_cluster.c:638
side1 = (edgenum1 < 0) ^ (face1->planenum != planenum);
edgenum1 = abs(edgenum1);
edge1 = &aasworld.edges[edgenum1];
//check if the edge is shared with another face
for (s = 0; s < numfaces; s++)
{
if (s == i) continue;
otherface = &aasworld.faces[facenums[s]];
for (ens = 0; ens < otherface->numedges; ens++)
{
if (edgenum1 == abs(aasworld.edgeindex[otherface->firstedge + ens])) break;
} //end for
if (ens != otherface->numedges) break;
} //end for
//if the edge was shared
if (s != numfaces) continue;
//
for (j = 0; j < numfaces; j++)