Code

oops, this one is actually used by other extensions too - restoring
[inkscape.git] / share / extensions / color_removegreen.py
1 import coloreffect\r
2 \r
3 class C(coloreffect.ColorEffect):\r
4   def colmod(self,r,g,b):\r
5     return '%02x%02x%02x' % (r,0,b)\r
6 \r
7 c = C()\r
8 c.affect()