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