Merge pull request #1087 from revarbat/revarbat_dev

Removed refs to removed constants from tutorial.
This commit is contained in:
Revar Desmera 2023-03-21 14:32:40 -07:00 committed by GitHub
commit 7d93e0d1c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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