Simple fix for the fillet plugin (which is currently not used in Cura, but good to fix SF bugs)

This commit is contained in:
Daid 2012-09-05 20:04:51 +02:00
parent 06fcf0dd07
commit 3191dccd91

View file

@ -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)