diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-03-01 22:39:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-01 22:39:33 +0100 |
commit | 78fcbb80c53ca29a00386087d05ca9abb1b7659b (patch) | |
tree | d3adacc817e7baee093ba53096bd6d56e3bf1eaf /core/math/quick_hull.h | |
parent | 834a984b08105fae98e1dbe4011563d27febfe1e (diff) | |
parent | 33c6b0ec1a352d964d504c49ea0c09e99b390817 (diff) | |
download | redot-engine-78fcbb80c53ca29a00386087d05ca9abb1b7659b.tar.gz |
Merge pull request #26455 from hpvb/fix-21141
Scale quickhull tolerance with mesh size
Diffstat (limited to 'core/math/quick_hull.h')
-rw-r--r-- | core/math/quick_hull.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/quick_hull.h b/core/math/quick_hull.h index 2e659cab6e..a445a47cbe 100644 --- a/core/math/quick_hull.h +++ b/core/math/quick_hull.h @@ -64,7 +64,7 @@ public: struct Face { Plane plane; - int vertices[3]; + uint32_t vertices[3]; Vector<int> points_over; bool operator<(const Face &p_face) const { |