remove move with x= example

This commit is contained in:
Adrian Mariano 2022-03-30 20:52:47 -04:00
parent 0af8b9527a
commit f17010e284

View file

@ -50,21 +50,13 @@ include <BOSL2/std.scad>
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 <BOSL2/std.scad>
#sphere(d=20);
move([30,-10]) sphere(d=20);
```
```openscad
include <BOSL2/std.scad>
#sphere(d=20);
move(x=30,y=10) sphere(d=20);
```
## Scaling
The `scale()` command is also fairly simple:
```openscad