| 228 | static const double XJITTER = .1; |
| 229 | |
| 230 | static inline bool PointUsed(const double x, const double y) |
| 231 | { |
| 232 | return !IsZero(x, XJITTER) || !IsZero(y, XJITTER); |
| 233 | } |
| 234 | |
| 235 | static inline bool PointUsed(const Shape& shape, int ipoint) |
| 236 | { |
no test coverage detected