Cross Reference: color_rgbbarrel.py
xref
: /
inkscape
/
share
/
extensions
/
color_rgbbarrel.py
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
#!/
usr
/
bin
/
env
python
import
coloreffect
class
C(
coloreffect
.
ColorEffect
):
def
colmod
(
self
,r,g,b):
return
'%02x%02x%02x'
% (b,r,g)
c = C()
c.
affect
()