| 272 | //------------------------------------------------------------------------------ |
| 273 | |
| 274 | void DisposePolyPts(PolyPt*& pp) |
| 275 | { |
| 276 | if (pp == 0) return; |
| 277 | PolyPt *tmpPp; |
| 278 | pp->prev->next = 0; |
| 279 | while( pp ) |
| 280 | { |
| 281 | tmpPp = pp; |
| 282 | pp = pp->next; |
| 283 | delete tmpPp ; |
| 284 | } |
| 285 | } |
| 286 | //------------------------------------------------------------------------------ |
| 287 | |
| 288 | void InitEdge(TEdge *e, TEdge *eNext, |
no outgoing calls
no test coverage detected