From 512373cd5219e23c60cca0c7ff65ffad9b0ed530 Mon Sep 17 00:00:00 2001 From: Richard Milewski Date: Mon, 21 Aug 2023 12:47:14 -0700 Subject: [PATCH] Fix typo in transforms.scad --- transforms.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transforms.scad b/transforms.scad index 183e49d..cf15cc0 100644 --- a/transforms.scad +++ b/transforms.scad @@ -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.