From d3e015ca85ebc2705e15fd6a20e5ea71d6e8151f Mon Sep 17 00:00:00 2001 From: Lawrence D'Oliveiro Date: Sat, 12 Nov 2011 04:31:08 +0000 Subject: [PATCH] change vector * matrix (no longer allowed) to matrix * vector --- treadtiler.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/treadtiler.py b/treadtiler.py index 98b488b..a023fe5 100644 --- a/treadtiler.py +++ b/treadtiler.py @@ -25,7 +25,7 @@ { "name" : "Tread Tiler", "author" : "Lawrence D'Oliveiro ", - "version" : (0, 5, 6), + "version" : (0, 5, 7), "blender" : (2, 5, 6), "api" : 32411, "location" : "View 3D > Edit Mode > Tool Shelf", @@ -478,7 +478,7 @@ def action_common(self, context, redoing) : + VertexOffset * ThisSin * ReplicationUnitVector ) - ThisVertex = (ThisVertex + VertexOffset) * ThisXForm + ThisVertex = ThisXForm * (ThisVertex + VertexOffset) if VertIndex in MergedWithVertex : # compute merger of vertex in TileLine1 in this copy with # TileLine2 in previous copy @@ -499,8 +499,6 @@ def action_common(self, context, redoing) : ) ThatVertex = \ ( - (ThatVertex + VertexOffset) - * ( mathutils.Matrix.Translation(RotationCenter) * @@ -520,6 +518,8 @@ def action_common(self, context, redoing) : * mathutils.Matrix.Translation(- RotationCenter) ) + * + (ThatVertex + VertexOffset) ) ThisVertex = (ThisVertex + ThatVertex) / 2 #end if