We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9effb6d commit 054ffb9Copy full SHA for 054ffb9
1 file changed
poly2tri/common/shapes.h
@@ -57,7 +57,7 @@ struct Point {
57
std::vector<Edge*> edge_list;
58
59
/// Construct using coordinates.
60
- Point(double x, double y) : x(x), y(y) {}
+ Point(double x_, double y_) : x(x_), y(y_) {}
61
62
/// Set this point to all zeros.
63
void set_zero()
@@ -320,4 +320,4 @@ inline void Triangle::IsInterior(bool b)
320
321
}
322
323
-#endif
+#endif
0 commit comments