From d3150854acd5d8afe08a18333871ee588d93ac0b Mon Sep 17 00:00:00 2001 From: ochafik Date: Wed, 25 Dec 2024 12:34:52 +0000 Subject: [PATCH] axes: add back & left quick views --- src/components/ViewerPanel.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/ViewerPanel.tsx b/src/components/ViewerPanel.tsx index 4264c76..7631265 100644 --- a/src/components/ViewerPanel.tsx +++ b/src/components/ViewerPanel.tsx @@ -16,6 +16,8 @@ declare global { const PREDEFINED_ORBITS: [string, number, number][] = [ ["Front", 0, Math.PI / 2], ["Right", Math.PI / 2, Math.PI / 2], + ["Back", Math.PI, Math.PI / 2], + ["Left", -Math.PI / 2, Math.PI / 2], ["Top", 0, 0], ["Bottom", -Math.PI, Math.PI], ];