From 1ef190d93208d09d4493b90158defdb7ed244f27 Mon Sep 17 00:00:00 2001 From: Colin Date: Wed, 7 Feb 2024 22:47:48 +0000 Subject: [PATCH] cq_toplevel: fix "back" image export to actually show the back of the phone --- cq_toplevel.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cq_toplevel.py b/cq_toplevel.py index d800f62..2ed58e0 100755 --- a/cq_toplevel.py +++ b/cq_toplevel.py @@ -40,6 +40,7 @@ def export_png_image(obj, file_: str, orientation: str): camera.Elevation(-50) elif orientation == "back": camera.Roll(0) + camera.Yaw(180) camera.Elevation(-35) elif orientation == "side": camera.Yaw(75)