From ddbe84dad82456aa839bc3c80dbe7ddd550ba4d4 Mon Sep 17 00:00:00 2001
From: Martin Bauer <martin.bauer@fau.de>
Date: Fri, 30 Aug 2019 16:41:45 +0200
Subject: [PATCH] Guard for 3D axis equal (not supported in backend used for
 unittests)

---
 pystencils/stencil.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/pystencils/stencil.py b/pystencils/stencil.py
index f2201ccc1..9f70336f3 100644
--- a/pystencils/stencil.py
+++ b/pystencils/stencil.py
@@ -419,7 +419,10 @@ def plot_3d(stencil, figure=None, axes=None, data=None, textsize='8'):
         if figure is None:
             figure = plt.figure()
         axes = figure.gca(projection='3d')
-        axes.set_aspect("equal")
+        try:
+            axes.set_aspect("equal")
+        except NotImplementedError:
+            pass
 
     if data is None:
         data = [None] * len(stencil)
-- 
GitLab