| 264 | } |
| 265 | |
| 266 | inline int PointCount(OutPt* op) |
| 267 | { |
| 268 | OutPt* op2 = op; |
| 269 | int cnt = 0; |
| 270 | do |
| 271 | { |
| 272 | op2 = op2->next; |
| 273 | ++cnt; |
| 274 | } while (op2 != op); |
| 275 | return cnt; |
| 276 | } |
| 277 | |
| 278 | inline OutPt* DuplicateOp(OutPt* op, bool insert_after) |
| 279 | { |
nothing calls this directly
no outgoing calls
no test coverage detected