| 4512 | //------------------------------------------------------------------------------ |
| 4513 | |
| 4514 | void MinkowskiSum(const Path& pattern, const Path& path, Paths& solution, bool pathIsClosed) |
| 4515 | { |
| 4516 | Minkowski(pattern, path, solution, true, pathIsClosed); |
| 4517 | Clipper c; |
| 4518 | c.AddPaths(solution, ptSubject, true); |
| 4519 | c.Execute(ctUnion, solution, pftNonZero, pftNonZero); |
| 4520 | } |
| 4521 | //------------------------------------------------------------------------------ |
| 4522 | |
| 4523 | void TranslatePath(const Path& input, Path& output, const IntPoint delta) |