manifold: Update to upstream commit 76208dc

This commit is contained in:
Kongfa Waroros
2025-07-15 23:45:15 +07:00
parent 7c472e655f
commit b4762468cc
17 changed files with 378 additions and 154 deletions

View File

@ -44,7 +44,7 @@ void QueryTwoDTree(VecView<PolyVert> points, Rect r, F f) {
int stackPointer = 0;
while (1) {
if (currentView.size() <= 2) {
if (currentView.size() <= 8) {
for (const auto& p : currentView)
if (r.Contains(p.pos)) f(p);
if (--stackPointer < 0) break;