diff options
| -rw-r--r-- | share/extensions/whirl.inx | 2 | ||||
| -rw-r--r-- | 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 @@ <param name="centerx" type="float" min="0.0" max="10000.0" _gui-text="Center X">100.0</param> <param name="centery" type="float" min="0.0" max="10000.0" _gui-text="Center Y">100.0</param> <param name="whirl" type="float" min="0.00" max="1000.00" _gui-text="Amount of whirl">100.0</param> - <param name="rotation" type="boolean" _gui-text="Direction of rotation">true</param> + <param name="rotation" type="boolean" _gui-text="Rotation is clockwise">true</param> <effect> <object-type>path</object-type> <effects-menu> 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') |
