[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [666] trunk/py/scripts/addons: -fixed my fix

Florian Meyer florianfelix at web.de
Sat May 15 04:45:15 CEST 2010


Revision: 666
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-extensions&revision=666
Author:   testscreenings
Date:     2010-05-15 04:45:14 +0200 (Sat, 15 May 2010)

Log Message:
-----------
-fixed my fix
-in case of executing the operators without invoke

Modified Paths:
--------------
    trunk/py/scripts/addons/add_mesh_gears.py
    trunk/py/scripts/addons/add_mesh_pipe_joint.py

Modified: trunk/py/scripts/addons/add_mesh_gears.py
===================================================================
--- trunk/py/scripts/addons/add_mesh_gears.py	2010-05-14 23:30:29 UTC (rev 665)
+++ trunk/py/scripts/addons/add_mesh_gears.py	2010-05-15 02:45:14 UTC (rev 666)
@@ -752,7 +752,7 @@
         min=0.0,
         max=100.0,
         default=0.0)
-    newMatrix = 'fromInvoke'
+    newMatrix = mathutils.Matrix()
 
     def draw(self, context):
         props = self.properties
@@ -885,7 +885,7 @@
         min=0.0,
         max=100.0,
         default=0.0)
-    newMatrix = 'fromInvoke'
+    newMatrix = mathutils.Matrix()
 
     def draw(self, context):
         props = self.properties

Modified: trunk/py/scripts/addons/add_mesh_pipe_joint.py
===================================================================
--- trunk/py/scripts/addons/add_mesh_pipe_joint.py	2010-05-14 23:30:29 UTC (rev 665)
+++ trunk/py/scripts/addons/add_mesh_pipe_joint.py	2010-05-15 02:45:14 UTC (rev 666)
@@ -347,7 +347,7 @@
         min=0.01,
         max=100.0,
         unit="LENGTH")
-    newMatrix = 'fromInvoke'
+    newMatrix = mathutils.Matrix()
 
     def execute(self, context):
         edit = self.properties.edit
@@ -488,7 +488,7 @@
         min=0.01,
         max=100.0,
         unit="LENGTH")
-    newMatrix = 'fromInvoke'
+    newMatrix = mathutils.Matrix()
 
     def execute(self, context):
         edit = self.properties.edit
@@ -701,7 +701,7 @@
         min=0.01,
         max=100.0,
         unit="LENGTH")
-    newMatrix = 'fromInvoke'
+    newMatrix = mathutils.Matrix()
 
     def execute(self, context):
         edit = self.properties.edit
@@ -937,7 +937,7 @@
         min=0.01,
         max=100.0,
         unit="LENGTH")
-    newMatrix = 'fromInvoke'
+    newMatrix = mathutils.Matrix()
 
     def execute(self, context):
         edit = self.properties.edit
@@ -1192,7 +1192,7 @@
         min=0.01,
         max=100.0,
         unit="LENGTH")
-    newMatrix = 'fromInvoke'
+    newMatrix = mathutils.Matrix()
 
     def execute(self, context):
         edit = self.properties.edit




More information about the Bf-extensions-cvs mailing list