Skip to content

Commit 2bb1497

Browse files
authored
fix: remove undefined inclusive arg from _from_neighbor_umbrella call
1 parent 80ad79e commit 2bb1497

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

MAVProxy/modules/lib/geodesic_grid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ def _triangle_index(v):
331331
elif m == 2:
332332
w.x, w.y, w.z = w.z, w.x, -w.y
333333

334-
return _from_neighbor_umbrella(umbrella, v, w, inclusive)
334+
return _from_neighbor_umbrella(umbrella, v, w)
335335

336336
def _subtriangle_index(triangle_index, v):
337337
w = _mid_inverses[triangle_index % 10] * v

0 commit comments

Comments
 (0)