(int precision = 2)
| 465 | public PathsD(int capacity = 0) : base(capacity) { } |
| 466 | public PathsD(IEnumerable<PathD> paths) : base(paths) { } |
| 467 | public string ToString(int precision = 2) |
| 468 | { |
| 469 | return string.Join(Environment.NewLine, ConvertAll(x => x.ToString(precision))); |
| 470 | } |
| 471 | } |
| 472 | |
| 473 | // Note: all clipping operations except for Difference are commutative. |