(int precision = 2)
| 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 | { |
nothing calls this directly
no outgoing calls
no test coverage detected