Code

Snapping: improve calculation of metrics for scaling, modify some comments, and remov...
[inkscape.git] / share / extensions / color_rgbbarrel.py
1 #!/usr/bin/env python
2 import coloreffect
4 class C(coloreffect.ColorEffect):
5   def colmod(self,r,g,b):
6     return '%02x%02x%02x' % (b,r,g)
8 c = C()
9 c.affect()