From 121b8902a6204113e134ff127efcd52881dbe7d2 Mon Sep 17 00:00:00 2001 From: Sietze van Buuren Date: Sat, 9 Nov 2024 16:17:08 +0100 Subject: [PATCH] refactor: Remove orthographic plot of surface example The arctan2 example now feature orthographic projection Signed-off-by: Sietze van Buuren --- examples/surface.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/examples/surface.py b/examples/surface.py index 7ec0ecf..05739a7 100644 --- a/examples/surface.py +++ b/examples/surface.py @@ -25,9 +25,6 @@ def main(): mpg.figure(title='Perspective surface plot', layout_type='Qt') mpg.surf(x, y, z, colormap='viridis', projection='perspective') - mpg.figure(title='Orthographic surface plot', layout_type='Qt') - mpg.surf(x, y, z, colormap='viridis', projection='orthographic') - if __name__ == '__main__': main()