From af8cc0914d82d76ce059adde26705568e27f01c1 Mon Sep 17 00:00:00 2001 From: Bill Little Date: Tue, 19 Sep 2023 10:29:28 +0100 Subject: [PATCH] fix lighting for vectors example (#448) --- src/geovista/examples/vectors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/geovista/examples/vectors.py b/src/geovista/examples/vectors.py index 4ddc78d7..157d6298 100755 --- a/src/geovista/examples/vectors.py +++ b/src/geovista/examples/vectors.py @@ -32,7 +32,7 @@ def main() -> None: # plot mesh plotter = gv.GeoPlotter() plotter.add_base_layer(texture=gv.natural_earth_1(), zlevel=0, lighting=False) - plotter.add_mesh(sphere.arrows, lighting=None) + plotter.add_mesh(sphere.arrows, lighting=False) plotter.camera.zoom(1.5) plotter.add_axes() plotter.show()