| # | Line 14 | Line 14 | extern "C" { | |
|---|---|---|
| 14 | ||
| 15 | typedef struct { /* a polygonal face */ | |
| 16 | FVECT norm; /* the plane's unit normal */ | |
| 17 | < | FLOAT offset; /* plane equation: DOT(norm, v) == offset */ |
| 18 | < | FLOAT area; /* area of face */ |
| 19 | < | FLOAT *va; /* vertex array (o->oargs.farg) */ |
| 17 | > | RREAL offset; /* plane equation: DOT(norm, v) == offset */ |
| 18 | > | RREAL area; /* area of face */ |
| 19 | > | RREAL *va; /* vertex array (o->oargs.farg) */ |
| 20 | short nv; /* # of vertices */ | |
| 21 | short ax; /* axis closest to normal */ | |
| 22 | } FACE; | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |