Beispiel #1
0
 def getSkewY(self):
     sx = mingc.new_floatp()
     sy = mingc.new_floatp()
     mingc.SWFDisplayItem_getSkew(self.this, sx, sy)
     ret = mingc.floatp_value(sy)
     mingc.delete_floatp(sx)
     mingc.delete_floatp(sy)
     return ret
Beispiel #2
0
 def getPositionY(self):
     x = mingc.new_floatp()
     y = mingc.new_floatp()
     mingc.SWFDisplayItem_getPosition(self.this, x, y)
     ret = mingc.floatp_value(y)
     mingc.delete_floatp(x)
     mingc.delete_floatp(y)
     return ret
Beispiel #3
0
 def getSkewY(self):
     sx = mingc.new_floatp()
     sy = mingc.new_floatp()
     mingc.SWFDisplayItem_getSkew(self.this, sx, sy)
     ret = mingc.floatp_value(sy)
     mingc.delete_floatp(sx)
     mingc.delete_floatp(sy)
     return ret
Beispiel #4
0
    def getPositionY(self):
	x = mingc.new_floatp()
	y = mingc.new_floatp()
	mingc.SWFDisplayItem_getPosition(self.this, x, y)
	ret = mingc.floatp_value(y)
	mingc.delete_floatp(x)
	mingc.delete_floatp(y)
	return ret
Beispiel #5
0
 def getRotation(self):
     rot = mingc.new_floatp()
     mingc.SWFDisplayItem_getRotation(self.this, rot)
     ret = mingc.floatp_value(rot)
     mingc.delete_floatp(rot)
     return ret
Beispiel #6
0
    def getRotation(self):
        rot = mingc.new_floatp()
	mingc.SWFDisplayItem_getRotation(self.this, rot)
	ret = mingc.floatp_value(rot)
	mingc.delete_floatp(rot)
	return ret