Merge pull request #1261 from RAMilewski/master

Fix typo in transforms.scad
This commit is contained in:
Revar Desmera 2023-08-22 02:18:18 -07:00 committed by GitHub
commit 98816d07f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -730,7 +730,7 @@ function zrot(a=0, p=_NO_ARG, cp) = rot(a, cp=cp, p=p);
// * If the `cp` centerpoint argument is given, then the tilt/rotation is performed around that centerpoint. So `tilt(...,cp=[1,2,3])` is equivalent to `move([1,2,3]) tilt(...) move([-1,-2,-3])`.
// * If the `reverse` argument is true, then the tilt/rotation performed will be exactly reversed.
// .
// The behavior and return value varies depending on how `rot()` is called:
// The behavior and return value varies depending on how `tilt()` is called:
// * Called as a module, tilts all children.
// * Called as a function with a `p` argument containing a point, returns the tilted/rotated point.
// * Called as a function with a `p` argument containing a list of points, returns the list of tilted/rotated points.