diff options
| author | Kris De Gussem <kris.degussem@gmail.com> | 2012-06-07 15:49:46 +0000 |
|---|---|---|
| committer | Kris <Kris.De.Gussem@hotmail.com> | 2012-06-07 15:49:46 +0000 |
| commit | a3f1abb5a4c7841062fca8f105b54e06ee580b78 (patch) | |
| tree | 75665c360b7cbb06e0c18f9027ae11ad4e3f4aae /src/live_effects | |
| parent | cppcheck (diff) | |
| download | inkscape-a3f1abb5a4c7841062fca8f105b54e06ee580b78.tar.gz inkscape-a3f1abb5a4c7841062fca8f105b54e06ee580b78.zip | |
probably this was intended
(bzr r11466)
Diffstat (limited to 'src/live_effects')
| -rw-r--r-- | src/live_effects/spiro.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/live_effects/spiro.cpp b/src/live_effects/spiro.cpp index e4b72793c..14df5e92e 100644 --- a/src/live_effects/spiro.cpp +++ b/src/live_effects/spiro.cpp @@ -850,7 +850,7 @@ spiro_seg_to_otherpath(const double ks[4], double bend = fabs(ks[0]) + fabs(.5 * ks[1]) + fabs(.125 * ks[2]) + fabs((1./48) * ks[3]); - if (!bend > 1e-8) { + if (!(bend > 1e-8)) { bc.lineto(x1, y1); } else { double seg_ch = hypot(x1 - x0, y1 - y0); |
