flip pyside2 template line endings

This commit is contained in:
Luke Campagnola 2018-05-17 09:02:41 -07:00
parent 82afad8366
commit 8da208b914
10 changed files with 845 additions and 844 deletions

View File

@ -14,6 +14,7 @@ class Transform3D(QtGui.QMatrix4x4):
args = [x for y in args[0] for x in y]
if len(args) != 16:
raise TypeError("Single argument to Transform3D must have 16 elements.")
print(args)
QtGui.QMatrix4x4.__init__(self, *args)
def matrix(self, nd=3):