mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-02-16 16:39:38 +00:00
Removed planar=true from tutorial.
This commit is contained in:
parent
2e9c303abb
commit
7e65a001e1
1 changed files with 1 additions and 1 deletions
|
@ -386,7 +386,7 @@ multmatrix(mat) square(50,center=true);
|
|||
To apply a compound transformation matrix to a path, you can use the `apply()` function:
|
||||
|
||||
```openscad-2D
|
||||
mat = move([5,10]) * rot(30, planar=true) * scale([1.5,0.75]);
|
||||
mat = move([5,10]) * rot(30) * scale([1.5,0.75]);
|
||||
path = square(50,center=true);
|
||||
tpath = apply(mat, path);
|
||||
stroke(tpath, endcap2="arrow2");
|
||||
|
|
Loading…
Reference in a new issue