diff options
Diffstat (limited to 'core/math/convex_hull.cpp')
-rw-r--r-- | core/math/convex_hull.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/convex_hull.cpp b/core/math/convex_hull.cpp index 80662c1b07..6d325c166a 100644 --- a/core/math/convex_hull.cpp +++ b/core/math/convex_hull.cpp @@ -2326,7 +2326,7 @@ Error ConvexHullComputer::convex_hull(const Vector<Vector3> &p_points, Geometry3 e = e->get_next_edge_of_face(); } while (e != e_start); - // reverse indices: Godot wants clockwise, but this is counter-clockwise + // reverse indices: Redot wants clockwise, but this is counter-clockwise if (face.indices.size() > 2) { // reverse all but the first index. int *indices = face.indices.ptr(); |