From 332ea4251db09b99cb683ccfa0a806bd71875ac3 Mon Sep 17 00:00:00 2001 From: aryan Date: Wed, 25 Mar 2026 11:47:01 -0400 Subject: [PATCH] fix: remove undefined inclusive arg from _from_neighbor_umbrella call --- MAVProxy/modules/lib/geodesic_grid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MAVProxy/modules/lib/geodesic_grid.py b/MAVProxy/modules/lib/geodesic_grid.py index 5e51d9147b..239859acfb 100644 --- a/MAVProxy/modules/lib/geodesic_grid.py +++ b/MAVProxy/modules/lib/geodesic_grid.py @@ -331,7 +331,7 @@ def _triangle_index(v): elif m == 2: w.x, w.y, w.z = w.z, w.x, -w.y - return _from_neighbor_umbrella(umbrella, v, w, inclusive) + return _from_neighbor_umbrella(umbrella, v, w) def _subtriangle_index(triangle_index, v): w = _mid_inverses[triangle_index % 10] * v