From: Daid Date: Wed, 5 Sep 2012 18:04:51 +0000 (+0200) Subject: Simple fix for the fillet plugin (which is currently not used in Cura, but good to... X-Git-Tag: 13.03~346 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=3191dccd911c06ad6249f707e6baed09b2ed8e20;p=cura.git Simple fix for the fillet plugin (which is currently not used in Cura, but good to fix SF bugs) --- diff --git a/Cura/cura_sf/skeinforge_application/skeinforge_plugins/craft_plugins/fillet.py b/Cura/cura_sf/skeinforge_application/skeinforge_plugins/craft_plugins/fillet.py index d5af827e..231643e8 100644 --- a/Cura/cura_sf/skeinforge_application/skeinforge_plugins/craft_plugins/fillet.py +++ b/Cura/cura_sf/skeinforge_application/skeinforge_plugins/craft_plugins/fillet.py @@ -336,7 +336,7 @@ class ArcPointSkein( ArcSegmentSkein ): distance = abs( arcDistanceZ ) if distance <= 0.0: return - line = self.distanceFeedRate.getFirstWordMovement( firstWord, afterPointMinusBefore ) + self.getRelativeCenter( centerMinusBeforeComplex ) + line = self.distanceFeedRate.getFirstWordMovement( firstWord, afterPoint ) + self.getRelativeCenter( centerMinusBeforeComplex ) cornerFeedRate = self.getCornerFeedRate() if cornerFeedRate != None: line += ' F' + self.distanceFeedRate.getRounded(cornerFeedRate)