From b1573c430bfa15c6a4de1efa463e0092574ca6ae Mon Sep 17 00:00:00 2001 From: buliabyak Date: Sat, 11 Feb 2006 06:39:45 +0000 Subject: [PATCH] make more sense of the rotation direction param --- share/extensions/whirl.inx | 2 +- share/extensions/whirl.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/share/extensions/whirl.inx b/share/extensions/whirl.inx index a92d50328..85000415f 100644 --- a/share/extensions/whirl.inx +++ b/share/extensions/whirl.inx @@ -6,7 +6,7 @@ 100.0 100.0 100.0 - true + true path diff --git a/share/extensions/whirl.py b/share/extensions/whirl.py index 35dbc0840..4b234d014 100644 --- a/share/extensions/whirl.py +++ b/share/extensions/whirl.py @@ -39,9 +39,9 @@ class Whirl(inkex.Effect): help="direction of rotation") def effect(self): for id, node in self.selected.iteritems(): - rotation = 1 + rotation = -1 if self.options.rotation == True: - rotation = -1 + rotation = 1 whirl = self.options.whirl / 1000 if node.tagName == 'path': d = node.attributes.getNamedItem('d') -- 2.30.2