summaryrefslogtreecommitdiffstats
path: root/src/2geom/path.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Sync 2Geom to commit 5ee51c1c4f2066faa3e2c82021fc92671ad44ba4Krzysztof Kosi??ski2016-02-081-101/+167
| | | (bzr r14639)
* Sync 2Geom to revision 2420.Krzysztof Kosi??ski2015-07-151-3/+0
| | | | | Should fix build failure on llvm-gcc 4.2 and an issue with powerstroke. (bzr r14247)
* Upgrade to 2Geom r2413Krzysztof Kosi??ski2015-07-041-16/+9
| | | (bzr r14059.2.18)
* Update to 2Geom revision 2396Krzysztof Kosi??ski2015-05-221-13/+133
| | | (bzr r14059.2.16)
* Update to 2Geom r2360. Fixes taper stroke LPE.Krzysztof Kosi??ski2015-05-091-4/+36
| | | (bzr r14059.2.13)
* Fix eraser toolKrzysztof Kosi??ski2015-05-091-3/+15
| | | (bzr r14059.2.12)
* Update 2Geom to r2347Krzysztof Kosi??ski2015-04-301-27/+22
| | | (bzr r14059.2.3)
* Fix calls to Geom::cross() - sign change.Krzysztof Kosi??ski2015-04-281-0/+10
| | | (bzr r14059.2.2)
* 2Geom sync - initial commitKrzysztof Kosi??ski2015-04-271-394/+842
| | | (bzr r14059.2.1)
* Warnings cleaup.Jon A. Cruz2014-07-151-1/+1
| | | (bzr r13454)
* temporary fix for bug in 2geom, the bug manifests itself in LPE Construct gridJohan B. C. Engelen2014-04-061-1/+5
| | | (bzr r13273)
* partial 2geom update:Johan B. C. Engelen2014-03-311-3/+31
| | | | | | - main reason for update: better swap for Path (fixes C++11 warning/error) - faster implementation for Path * Translate (~6x), Inkscape's code has to be modified to use it though (bzr r13248)
* update 2geom's copy to r2142Johan B. C. Engelen2014-01-121-5/+4
| | | (bzr r12921)
* cppcheck performanceKris De Gussem2012-01-151-1/+1
| | | (bzr r10891)
* update 2geom to r2049. fixes bugs!Johan B. C. Engelen2012-01-041-3/+2
| | | (bzr r10837)
* update to latest 2geom !Johan B. C. Engelen2011-02-021-8/+10
| | | (bzr r10025)
* Super duper mega (fun!) commit: replaced encoding=utf-8 with ↵Chris Morgan2010-11-171-1/+1
| | | | | | | | | | | | | | | fileencoding=utf-8 in all 1074 Vim modelines. The reason for this is that (a) setting the encoding isn't nice, and (b) Vim 7.3 (with modeline enabled) disallows it and pops up an error whenever you open any file with it ("invalid modeline"). Also corrected five deviant modestrings: * src/ui/widget/dock.cpp and src/ui/widget/dock.h: missing colon at the end * src/ui/dialog/tile.cpp: removed gratuitous second colon at the end * src/helper/units-test.h: removed gratuitous space before a colon * share/extensions/export_gimp_palette.py: missing textwidth=99 That's my geekiest commit yet. (bzr r9900)
* Revert fix for 515237 which introduces a catastrophic bugKrzysztof Kosi??ski2010-02-071-11/+2
| | | (bzr r9064)
* Fix path transformation (LP bug #515237)Krzysztof Kosi??ski2010-02-071-2/+11
| | | | | | Fixed bugs: - https://launchpad.net/bugs/515237 (bzr r9062)
* * Implement node snapping.Krzysztof Kosi??ski2010-01-101-3/+2
| | | | | | | | | | | | | * Fix minor bug in linear grow. * Add --fixes. * Move some node selection-related functions to ControlPointSelection. Fixed bugs: - https://launchpad.net/bugs/170561 - https://launchpad.net/bugs/171893 - https://launchpad.net/bugs/182585 - https://launchpad.net/bugs/446773 (bzr r8846.2.9)
* update 2geom. big commit as it has been a while. (2geom svn rev. 1870, i think)Johan B. C. Engelen2009-04-061-1/+3
| | | | | i turned some optional compilation stuff *on* per default, to help building inkscape. (bzr r7638)
* Merge from fe-movedTed Gould2008-11-211-13/+13
| | | (bzr r6891)
* 2geom update (rev. 1578); fixes node editing of some degenerate pathsMaximilian Albert2008-09-081-0/+5
| | | (bzr r6784)
* Update to 2geom rev. 1538Diederik van Lierop2008-08-151-0/+14
| | | (bzr r6634)
* update 2geomJohan B. C. Engelen2008-08-031-9/+14
| | | (bzr r6549)
* update to 2geom rev. 1507Johan B. C. Engelen2008-07-251-3/+9
| | | (bzr r6416)
* update to latest 2geom (rev1497)Johan B. C. Engelen2008-07-161-57/+46
| | | (bzr r6332)
* update 2geom (svn rev1433)Johan B. C. Engelen2008-07-031-71/+70
| | | (bzr r6134)
* update 2geom, fixes includesJohan B. C. Engelen2008-06-141-26/+2
| | | (bzr r5934)
* update 2geomJohan B. C. Engelen2008-06-141-2/+55
| | | (bzr r5931)
* fix crash in 2geom (already committed to 2geom)Johan B. C. Engelen2008-05-301-2/+5
| | | (bzr r5768)
* added methods to PathSink to manage horizontal and vertical line segments, ↵mcecchetti2008-05-281-0/+1
| | | | | modified svg-path-parser.rl accordingly; now PathSink::arcTo has a real implementation; parser issue quickly solved by Aaron Spike (bzr r5758)
* implemented new classes for horizontal and vertical line segments; path.h ↵mcecchetti2008-05-261-68/+16
| | | | | has been splitted in several files: curve.h, sbasis-curve.h, bezier-curve.h, elliptical-arc.h, path.h; curves.h allows to include all curve types at once (bzr r5755)
* update to latest 2geomJohan B. C. Engelen2008-05-181-0/+10
| | | (bzr r5689)
* update to latest 2geom. this adds gsl dependency, doesn't seem to make ↵Johan B. C. Engelen2008-05-101-5/+183
| | | | | inskape executable bigger (bzr r5649)
* update to latest 2geom. (eol-style fix)Johan B. C. Engelen2008-04-181-3/+2
| | | (bzr r5470)
* sync with current 2geom, split_at_discontinuities method and SVGEllipticalArcJohan B. C. Engelen2008-04-131-23/+1
| | | (bzr r5423)
* 2geom: splice exceptions code from utils.h into exception.hJohan B. C. Engelen2007-11-171-5/+5
| | | (bzr r4097)
* 2geom tryout: new exceptionsJohan B. C. Engelen2007-11-171-5/+5
| | | (bzr r4094)
* update to 2geom rev. 1168Johan B. C. Engelen2007-11-121-5/+5
| | | (bzr r4068)
* merge in 2geom rev. 1154Johan B. C. Engelen2007-09-161-2/+2
| | | (bzr r3756)
* Update to 2Geom rev. 1113Johan B. C. Engelen2007-08-301-367/+258
| | | (bzr r3622)
* Commit LivePathEffect branch to trunk!Johan B. C. Engelen2007-08-141-0/+367
(disabled extension/internal/bitmap/*.* in build.xml to fix compilation) (bzr r3472)