This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Functions | |
| void | AAS_MeltAreaFaceWindings (void) |
|
|
Definition at line 92 of file aas_edgemelting.c. References AAS_MeltFaceWindingsOfArea(), tmp_aas_s::areas, tmp_area_s::l_next, Log_Write(), qprintf(), tmp_area_t, and tmpaasworld. Referenced by AAS_Create(). 00093 {
00094 tmp_area_t *tmparea;
00095 int num_windingsplits = 0;
00096
00097 Log_Write("AAS_MeltAreaFaceWindings\r\n");
00098 qprintf("%6d edges melted", num_windingsplits);
00099 //NOTE: first convex area (zero) is a dummy
00100 for (tmparea = tmpaasworld.areas; tmparea; tmparea = tmparea->l_next)
00101 {
00102 num_windingsplits += AAS_MeltFaceWindingsOfArea(tmparea);
00103 qprintf("\r%6d", num_windingsplits);
00104 } //end for
00105 qprintf("\n");
00106 Log_Write("%6d edges melted\r\n", num_windingsplits);
00107 } //end of the function AAS_MeltAreaFaceWindings
|
Here is the call graph for this function:

1.3.9.1