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: