diff --git a/nodes/modifier_change/objects_along_edge.py b/nodes/modifier_change/objects_along_edge.py index 7c9ce60af190066d050e00133cf043470b67a4e0..244ae6a7ab412ffa080967f30639ca7bfdcda258 100644 --- a/nodes/modifier_change/objects_along_edge.py +++ b/nodes/modifier_change/objects_along_edge.py @@ -205,7 +205,7 @@ class SvDuplicateAlongEdgeNode(bpy.types.Node, SverchCustomTreeNode): else: flip = Matrix.Identity(4) if scale is None: - matrices = [Matrix.Translation(o)*rot*flip for o in origins] + matrices = [Matrix.Translation(o) @ rot @ flip for o in origins] else: matrices = [Matrix.Translation(o) @ rot @ scale @ flip for o in origins]