MCPcopy Create free account
hub / github.com/AngusJohnson/Clipper2 / PathDToString

Method PathDToString

CSharp/Clipper2Lib/Clipper.cs:321–327  ·  view source on GitHub ↗
(PathD path)

Source from the content-addressed store, hash-verified

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 = "";

Callers

nothing calls this directly

Calls 1

ToStringMethod · 0.45

Tested by

no test coverage detected