| 1222 | //------------------------------------------------------------------------------ |
| 1223 | |
| 1224 | bool ClipperBase::AddPaths(const Paths &ppg, PolyType PolyTyp, bool Closed) |
| 1225 | { |
| 1226 | bool result = false; |
| 1227 | for (Paths::size_type i = 0; i < ppg.size(); ++i) |
| 1228 | if (AddPath(ppg[i], PolyTyp, Closed)) result = true; |
| 1229 | return result; |
| 1230 | } |
| 1231 | //------------------------------------------------------------------------------ |
| 1232 | |
| 1233 | void ClipperBase::Clear() |
no test coverage detected