| 114 | std::ostream& operator <<(std::ostream &s, const Paths &p); |
| 115 | |
| 116 | struct DoublePoint |
| 117 | { |
| 118 | double X; |
| 119 | double Y; |
| 120 | DoublePoint(double x = 0, double y = 0) : X(x), Y(y) {} |
| 121 | DoublePoint(IntPoint ip) : X((double)ip.X), Y((double)ip.Y) {} |
| 122 | }; |
| 123 | //------------------------------------------------------------------------------ |
| 124 | |
| 125 | #ifdef use_xyz |
no outgoing calls
no test coverage detected