From 8dc46460003df5e81a237ac783e7cbe0f27d9d9c Mon Sep 17 00:00:00 2001 From: Revar Desmera Date: Tue, 21 Mar 2023 14:28:07 -0700 Subject: [PATCH] Removed refs to removed constants from tutorial. --- tutorials/Transforms.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tutorials/Transforms.md b/tutorials/Transforms.md index ca5ad66..142d385 100644 --- a/tutorials/Transforms.md +++ b/tutorials/Transforms.md @@ -158,10 +158,8 @@ Constant | Value | Direction `RIGHT` | `[ 1, 0, 0]` | Towards X+ `FWD`, `FORWARD`, `FRONT` | `[ 0,-1, 0]` | Towards Y- `BACK` | `[ 0, 1, 0]` | Towards Y+ -`DOWN`, `BOTTOM`, `BOT`, `BTM` | `[ 0, 0,-1]` | Towards Z- +`DOWN`, `BOTTOM`, `BOT` | `[ 0, 0,-1]` | Towards Z- `UP`, `TOP` | `[ 0, 0, 1]` | Towards Z+ -`ALLNEG` | `[-1,-1,-1]` | Towards X-Y-Z- -`ALLPOS` | `[ 1, 1, 1]` | Towards X+Y+Z+ This lets you rewrite the above vector rotation more clearly as: ```openscad