()
| 429 | public class Path64 : List<Point64> |
| 430 | { |
| 431 | public Path64() : base() { } |
| 432 | public Path64(int capacity = 0) : base(capacity) { } |
| 433 | public Path64(IEnumerable<Point64> path) : base(path) { } |
| 434 | public override string ToString() |
nothing calls this directly
no outgoing calls
no test coverage detected