diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-05-29 12:10:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-29 12:10:37 +0200 |
commit | 1620669f4e37c21fa45991a9bc37410014845419 (patch) | |
tree | cb9162147bba330ff007c12b349dba070b385a3a /editor/plugins/polygon_2d_editor_plugin.cpp | |
parent | 6aa399be59b886e1c8c371f4ceb09f41c86a0584 (diff) | |
parent | 69d5de632e04d48a247d50c1dc2c09322129c73a (diff) |
Merge pull request #39051 from Xrayez/geometry-split
Split `Geometry` singleton into `Geometry2D` and `Geometry3D`
Diffstat (limited to 'editor/plugins/polygon_2d_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/polygon_2d_editor_plugin.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/plugins/polygon_2d_editor_plugin.cpp b/editor/plugins/polygon_2d_editor_plugin.cpp index 7ee695b9fe..1f98c0139b 100644 --- a/editor/plugins/polygon_2d_editor_plugin.cpp +++ b/editor/plugins/polygon_2d_editor_plugin.cpp @@ -32,6 +32,7 @@ #include "canvas_item_editor_plugin.h" #include "core/input/input.h" +#include "core/math/geometry_2d.h" #include "core/os/file_access.h" #include "core/os/keyboard.h" #include "editor/editor_scale.h" @@ -693,7 +694,7 @@ void Polygon2DEditor::_uv_input(const Ref<InputEvent> &p_input) { polys.write[j] = mtx.xform(points_prev[idx]); } - if (Geometry::is_point_in_polygon(Vector2(mb->get_position().x, mb->get_position().y), polys)) { + if (Geometry2D::is_point_in_polygon(Vector2(mb->get_position().x, mb->get_position().y), polys)) { erase_index = i; break; } |