| 434 | |
| 435 | |
| 436 | inline bool PtsReallyClose(const Point64& pt1, const Point64& pt2) |
| 437 | { |
| 438 | return (std::llabs(pt1.x - pt2.x) < 2) && (std::llabs(pt1.y - pt2.y) < 2); |
| 439 | } |
| 440 | |
| 441 | inline bool IsVerySmallTriangle(const OutPt& op) |
| 442 | { |
no outgoing calls
no test coverage detected