setMatrix in Python

Dirk Datzert <[email protected]> Thu, 09 Oct 2003 21:15:40 +0200
Newsgroups gmane.comp.web.ming.general
Organization Rasselstein Hoesch GmbH
Message-ID <[email protected]>
Hi all,

I saw that ming has a SWFDisplyItem_setMatrix function and I missed that
in the Python Interface.

With this patch the setMatrix function will be introduced to the Python
Interface:

----------------------------------------------------------------------------

--- ming.py.orig        Thu Oct  9 21:13:10 2003
+++ ming.py.dirk        Thu Oct  9 21:12:57 2003
@@ -223,6 +223,9 @@
     def skewYTo(self, y):
         mingc.SWFDisplayItem_skewYTo(self.this, y)

+    def setMatrix(self, a, b, c, d, x, y):
+        mingc.SWFDisplayItem_setMatrix(self.this, a, b, c, d, x, y)
+
     def setName(self, name):
         mingc.SWFDisplayItem_setName(self.this, name)
----------------------------------------------------------------------------

Maybe the setMatrix function is useful for other SWF-Objecttypes ?

Regards,
Dirk