From 5881c36a057f8810909f55141749cd5332084b40 Mon Sep 17 00:00:00 2001 From: Greyson Christoforo Date: Sun, 5 Jun 2022 13:16:49 +0100 Subject: [PATCH] fix eachpoint() with useLocalCoordinates=False coordinate transformation --- cadquery/cq.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cadquery/cq.py b/cadquery/cq.py index cd787dc39..2c5544827 100644 --- a/cadquery/cq.py +++ b/cadquery/cq.py @@ -2476,7 +2476,7 @@ def eachpoint( if useLocalCoordinates: res = [callback(p).move(loc) for p in pnts] else: - res = [callback(p * loc) for p in pnts] + res = [callback(loc * p) for p in pnts] for r in res: if isinstance(r, Wire) and not r.forConstruction: