Lines Matching refs:group
32 if result.group(1)=="translate":
33 args=result.group(2).replace(',',' ').split()
41 if result.group(1)=="scale":
42 args=result.group(2).replace(',',' ').split()
50 if result.group(1)=="rotate":
51 args=result.group(2).replace(',',' ').split()
60 if result.group(1)=="skewX":
61 a=float(result.group(2))*math.pi/180
64 if result.group(1)=="skewY":
65 a=float(result.group(2))*math.pi/180
68 if result.group(1)=="matrix":
69 a11,a21,a12,a22,v1,v2=result.group(2).replace(',',' ').split()