Lines Matching refs:col
97 def process_prop(self, col):
98 #inkex.debug('got:'+col+str(type(col)))
99 if simplestyle.isColor(col):
100 c=simplestyle.parseColor(col)
101 col='#'+self.colmod(c[0], c[1], c[2])
102 #inkex.debug('made:'+col)
103 elif col.startswith('url(#'):
104 id = col[len('url(#'):col.find(')')]
110 col = 'url(#%s)' % newid
113 col = self.opacmod(col)
115 #inkex.debug('col:'+str(col))
116 return col