Removed planar=true from tutorial.

This commit is contained in:
Garth Minette 2021-12-29 19:40:35 -08:00
parent 2e9c303abb
commit 7e65a001e1

View file

@ -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");