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

Method ToString

CSharp/Clipper2Lib/Clipper.Core.cs:212–219  ·  view source on GitHub ↗
(int precision = 2)

Source from the content-addressed store, hash-verified

210 }
211
212 public readonly string ToString(int precision = 2)
213 {
214#if USINGZ
215 return string.Format($"{{0:F{precision}}},{{1:F{precision}}},{{2:D}}", x,y,z);
216#else
217 return string.Format($"{{0:F{precision}}},{{1:F{precision}}}", x,y);
218#endif
219 }
220
221 public static bool operator ==(PointD lhs, PointD rhs)
222 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected