From: buliabyak Date: Sat, 11 Feb 2006 06:39:45 +0000 (+0000) Subject: make more sense of the rotation direction param X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=b1573c430bfa15c6a4de1efa463e0092574ca6ae;p=inkscape.git make more sense of the rotation direction param --- 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')