(PathD path)
| 319 | return result; |
| 320 | } |
| 321 | public static string PathDToString(PathD path) |
| 322 | { |
| 323 | string result = ""; |
| 324 | foreach (PointD pt in path) |
| 325 | result += pt.ToString(); |
| 326 | return result + '\n'; |
| 327 | } |
| 328 | public static string PathsDToString(PathsD paths) |
| 329 | { |
| 330 | string result = ""; |