| 26 | vector Clip_plane_point; |
| 27 | |
| 28 | void InitFreePoints(void) { |
| 29 | int i; |
| 30 | |
| 31 | for (i = 0; i < MAX_POINTS_IN_POLY; i++) { |
| 32 | free_points[i] = &temp_points[i]; |
| 33 | } |
| 34 | free_point_num = 0; |
| 35 | } |
| 36 | |
| 37 | g3Point *GetTempPoint(void) { |
| 38 | ASSERT(free_point_num < MAX_POINTS_IN_POLY); |
no outgoing calls
no test coverage detected