diff --git a/tutorials/Transforms.md b/tutorials/Transforms.md index c7aa541..ca5ad66 100644 --- a/tutorials/Transforms.md +++ b/tutorials/Transforms.md @@ -50,21 +50,13 @@ include right(30) sphere(d=20); ``` -There is also a more generic `move()` command that can work just like `translate()`, or you can -specify the motion on each axis more clearly: +There is also a more generic `move()` command that can work just like `translate()`: ```openscad include #sphere(d=20); move([30,-10]) sphere(d=20); ``` -```openscad -include -#sphere(d=20); -move(x=30,y=10) sphere(d=20); -``` - - ## Scaling The `scale()` command is also fairly simple: ```openscad