summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpe-spiro.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* modernize loopsMarc Jeanmougin2019-01-021-8/+8
|
* Clarify licensesMax Gaukler2018-11-081-1/+2
| | | | | | - add license headers to everything - convert a few files from public domain or LGPL2.1+ to GPL2+ - some archaeology to clarify which files are from which library
* Run clang-tidy’s modernize-use-equals-default pass.Emmanuel Gil Peyrot2018-06-181-2/+1
| | | | | This replaces empty constructors and destructors with the default keyword.
* Revert "Fix include order with clang-tidy check llvm-include-order"Marc Jeanmougin2018-05-041-3/+3
| | | | This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
* Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin2018-04-291-3/+3
|
* Remove some ocurrences of desktop in knot functionsJabiertxof2016-12-191-2/+0
| | | (bzr r15337)
* Removed unused includes, decreased compilation time. Once againAdrian Boguszewski2016-08-031-3/+0
| | | (bzr r15034)
* Reverted changes to r15024 after many building problemsAdrian Boguszewski2016-07-281-0/+3
| | | (bzr r15027)
* Removed unused includes, decrease compilation timeAdrian Boguszewski2016-07-281-3/+0
| | | (bzr r15025)
* Refactor BSPline and Spiro to remove duplicated functionsJabier Arraiza Cenoz2015-08-061-11/+5
| | | (bzr r14280)
* 2Geom sync - initial commitKrzysztof Kosi??ski2015-04-271-2/+1
| | | (bzr r14059.2.1)
* cleanup spiro codeJohan B. C. Engelen2012-03-231-5/+2
| | | (bzr r11123)
* clean up spiro codeJohan B. C. Engelen2012-03-231-78/+0
| | | (bzr r11121)
* Update 2Geom to pull in integer rectangle classKrzysztof Kosi??ski2011-06-231-1/+0
| | | (bzr r10347.1.1)
* update to latest 2geom !Johan B. C. Engelen2011-02-021-1/+1
| | | (bzr r10025)
* Remove remnants of old node toolKrzysztof Kosi??ski2009-12-241-1/+0
| | | (bzr r8846.2.6)
* Fix LPEs and break mask transform undoKrzysztof Kosi??ski2009-12-081-8/+0
| | | (bzr r8846.2.3)
* lpe-spiro: fix problem with rounding and very nearly zero closing line segmentsJohan B. C. Engelen2009-08-261-1/+3
| | | (bzr r8541)
* call default setup_nodepath for lpe-spiro, to get correct color of the ↵Johan B. C. Engelen2009-06-021-0/+1
| | | | | helperpath (bzr r7974)
* Merging from trunkTed Gould2008-10-111-30/+35
| | | (bzr r6884)
* make spcurve::first_point and last_point boost::optionalJohan B. C. Engelen2008-08-131-1/+1
| | | (bzr r6617)
* simplify lpe spiro code by using new "is_straight_curve" methodJohan B. C. Engelen2008-08-021-6/+3
| | | (bzr r6538)
* use nodetype helper function to determine nodetype within lpe-spiroJohan B. C. Engelen2008-08-021-8/+4
| | | (bzr r6530)
* lpe spiro: if path is closed it does not matter to what initial pointtype is ↵Johan B. C. Engelen2008-08-021-1/+1
| | | | | initialized. (bzr r6528)
* remove more NR:: from live_effects codeJohan B. C. Engelen2008-08-011-3/+3
| | | (bzr r6515)
* update to 2geom rev. 1507Johan B. C. Engelen2008-07-251-0/+2
| | | (bzr r6416)
* remove debug messages from last commitsJohan B. C. Engelen2008-07-151-4/+0
| | | (bzr r6328)
* fix lpe-spiro for smooth closing pointsJohan B. C. Engelen2008-07-151-18/+35
| | | (bzr r6327)
* 2geomify lpeSpiroJohan B. C. Engelen2008-07-141-91/+97
| | | (bzr r6298)
* noop: be more consistent with function names (get_pathvector => set_pathvector)Johan B. C. Engelen2008-06-261-1/+1
| | | (bzr r6078)
* LPE Spiro: don't catch all exceptions, only the ContinuityErrorJohan B. C. Engelen2008-06-221-1/+1
| | | (bzr r6019)
* catch cases where LPE Spiro generates non-continuous pathsJohan B. C. Engelen2008-06-141-0/+21
| | | (bzr r5939)
* whitespaceMaximilian Albert2008-06-121-2/+2
| | | (bzr r5905)
* Add option to either suppress path flash for items with LPE (e.g., spiro ↵Maximilian Albert2008-06-081-1/+1
| | | | | splines use this) or display it permanently while the item is selected. (bzr r5860)
* complete adding const to have only NArtBpath const * get_bpath() const; for ↵Johan B. C. Engelen2008-05-091-3/+3
| | | | | accessing the protected member of SPCurve. Nowhere in Inkscape source is the path data changed of SPCurve, except within SPCurve's own methods ! So removed the non-const NArtBpath* get_bpath. (bzr r5642)
* - try to use more forward declarations for less dependencies on display/curve.hJohan B. C. Engelen2008-05-091-1/+1
| | | | | | - change _bpath to private member of SPCurve, obtain and set with get_bpath and set_bpath. - added const methods, so protect changes to _bpath in SPCurve (bzr r5636)
* make determining smooth nodes more robustbulia byak2008-05-061-9/+14
| | | (bzr r5613)
* struct SPCurve => class SPCurveJohan B. C. Engelen2008-05-051-7/+7
| | | | | change all sp_curve_methods functions to SPCurve::methods. (bzr r5609)
* Warning and whitespace cleanupJon A. Cruz2008-05-011-6/+6
| | | (bzr r5564)
* suppress helperpath and handles showing for LPESpiroJohan B. C. Engelen2008-04-141-1/+4
| | | (bzr r5439)
* suppress helperpath display for spirobulia byak2008-04-141-0/+5
| | | (bzr r5432)
* Spiro splines LPE using code by Raph Levienbulia byak2008-04-121-0/+196
(bzr r5409)