| 3305 | //------------------------------------------------------------------------------ |
| 3306 | |
| 3307 | inline void UpdateOutPtIdxs(OutRec& outrec) |
| 3308 | { |
| 3309 | OutPt* op = outrec.Pts; |
| 3310 | do |
| 3311 | { |
| 3312 | op->Idx = outrec.Idx; |
| 3313 | op = op->Prev; |
| 3314 | } |
| 3315 | while(op != outrec.Pts); |
| 3316 | } |
| 3317 | //------------------------------------------------------------------------------ |
| 3318 | |
| 3319 | void Clipper::InsertEdgeIntoAEL(TEdge *edge, TEdge* startEdge) |
no outgoing calls
no test coverage detected