| 2097 | //---------------------------------------------------------------------- |
| 2098 | |
| 2099 | PolyPt* DeletePolyPt(PolyPt* pp) |
| 2100 | { |
| 2101 | if (pp->next == pp) |
| 2102 | { |
| 2103 | delete pp; |
| 2104 | return 0; |
| 2105 | } else |
| 2106 | { |
| 2107 | PolyPt* result = pp->prev; |
| 2108 | pp->next->prev = result; |
| 2109 | result->next = pp->next; |
| 2110 | delete pp; |
| 2111 | return result; |
| 2112 | } |
| 2113 | } |
| 2114 | //------------------------------------------------------------------------------ |
| 2115 | |
| 2116 | PolyPt* FixSpikes(PolyPt *pp) |
no outgoing calls
no test coverage detected