INNER CODE UNIT · C
face1num
clover-moe/spearmint · code/botlib/be_aas_cluster.c:549
face1num = abs(aasworld.faceindex[area1->firstface + fn1]);
face1 = &aasworld.faces[face1num];
side1 = face1->frontarea != areanums[i];
//check if the face isn't a shared one with one of the other areas
for (s = 0; s < numareas; s++)
{
if (s == i) continue;
if (face1->frontarea == s || face1->backarea == s) break;
} //end for
//if the face was a shared one
if (s != numareas) continue;
//
for (j = 0; j < numareas; j++)
{
if (j == i) continue;
area2 = &aasworld.areas[areanums[j]];
for (fn2 = 0; fn2 < area2->numfaces; fn2++)
{