1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-14 02:34:12 +02:00

fix symbol

This commit is contained in:
Justin Lin
2020-04-15 16:19:17 +08:00
parent 6fcdeac414
commit f63b57043d
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ function _next_t2(t, code, angle, leng) =
code == "-" ? turtle3d("zu_turn", t, -angle) :
code == "|" ? turtle3d("zu_turn", t, 180) :
code == "&" ? turtle3d("yu_turn", t, angle) :
code == "" ? turtle3d("yu_turn", t, -angle) :
code == "^" ? turtle3d("yu_turn", t, -angle) :
code == "\\" ? turtle3d("xu_turn", t, angle) :
code == "/" ? turtle3d("xu_turn", t, -angle) : t;

View File

@@ -9,7 +9,7 @@ use <turtle/turtle3d.scad>;
- Turn right
| Reverse direction (ie: turn by 180 degrees)
& Pitch down
Pitch up
^ Pitch up
\ Roll left
/ Roll right
[ Push current turtle state onto stack