0_0_35509233_7016.cpp: In function 'void solve()':
0_0_35509233_7016.cpp:469:24: error: 'eps' was not declared in this scope
line t(a, {a.x + vx * eps * 2, a.y + vy * eps * 2});
^
0_0_35509233_7016.cpp:469:24: note: suggested alternative:
0_0_35509233_7016.cpp:82:11: note: 'Geo::eps'
const db eps = 1e-8, PI = acos(-1), inf = numeric_limits<db>::max();
^
0_0_35509233_7016.cpp:469:52: error: no matching function for call to 'Geo::Line::Line(point&, <brace-enclosed initializer list>)'
line t(a, {a.x + vx * eps * 2, a.y + vy * eps * 2});
^
0_0_35509233_7016.cpp:469:52: note: candidates are:
0_0_35509233_7016.cpp:119:3: note: Geo::Line::Line()
Line() = default;
^
0_0_35509233_7016.cpp:119:3: note: candidate expects 0 arguments, 2 provided
0_0_35509233_7016.cpp:118:3: note: Geo::Line::Line(const Geo::Point&, const Geo::Point&)
Line(const Point& _a, const Point& _b) : u(_a), v(_b) {}
^
0_0_35509233_7016.cpp:118:3: note: no known conversion for argument 2 from '<brace-enclosed initializer list>' to 'const Geo::Point&'
0_0_35509233_7016.cpp:116:9: note: constexpr Geo::Line::Line(const Geo::Line&)
struct Line {
^
0_0_35509233_7016.cpp:116:9: note: candidate expects 1 argument, 2 provided
0_0_35509233_7016.cpp:116:9: note: constexpr Geo::Line::Line(Geo::Line&&)
0_0_35509233_7016.cpp:116:9: note: candidate expects 1 argument, 2 provided
|