diff options
Diffstat (limited to 'core/math/delaunay_2d.h')
-rw-r--r-- | core/math/delaunay_2d.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/delaunay_2d.h b/core/math/delaunay_2d.h index fc70724308..0bc67a92f6 100644 --- a/core/math/delaunay_2d.h +++ b/core/math/delaunay_2d.h @@ -64,7 +64,7 @@ public: } }; - static Triangle create_triangle(const Vector<Vector2> &p_vertices, const int &p_a, const int &p_b, const int &p_c) { + static Triangle create_triangle(const Vector<Vector2> &p_vertices, int p_a, int p_b, int p_c) { Triangle triangle = Triangle(p_a, p_b, p_c); // Get the values of the circumcircle and store them inside the triangle object. |