()
| 443 | public Paths64(int capacity = 0) : base(capacity) { } |
| 444 | public Paths64(IEnumerable<Path64> paths) : base(paths) { } |
| 445 | public override string ToString() |
| 446 | { |
| 447 | return string.Join(Environment.NewLine, this); |
| 448 | } |
| 449 | } |
| 450 | |
| 451 | public class PathD : List<PointD> |
nothing calls this directly
no outgoing calls
no test coverage detected