summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpe-tangent_to_curve.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add knot ungrabbed eventJabiertxof2019-05-201-0/+3
|
* 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.
* Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot2018-06-181-3/+3
| | | | | This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
* Run clang-tidy’s modernize-use-override pass.Emmanuel Gil Peyrot2018-06-181-6/+6
| | | | | This adds the override specifier on all methods which override a virtual method, whether they were already virtual or missing this specifier.
* Revert "Fix include order with clang-tidy check llvm-include-order"Marc Jeanmougin2018-05-041-1/+1
| | | | This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
* Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin2018-04-291-1/+1
|
* Move classes derived from SPObject to own directory.Tavmjong Bah2018-01-301-2/+4
| | | | A lot of header clean-up.
* Code formatingJabiertxof2017-04-281-4/+4
| | | (bzr r15649)
* Remove some ocurrences of desktop in knot functionsJabiertxof2016-12-191-4/+4
| | | (bzr r15337)
* Fix headers on LPE'sJabiertxof2016-12-101-2/+2
| | | (bzr r15318)
* Removed unused includes, decreased compilation time. Once againAdrian Boguszewski2016-08-031-4/+0
| | | (bzr r15034)
* Reverted changes to r15024 after many building problemsAdrian Boguszewski2016-07-281-0/+4
| | | (bzr r15027)
* Removed unused includes, decrease compilation timeAdrian Boguszewski2016-07-281-4/+0
| | | (bzr r15025)
* 2Geom sync - initial commitKrzysztof Kosi??ski2015-04-271-4/+4
| | | (bzr r14059.2.1)
* Properly allow effect stacking with knotholders (and add extra LPE ↵Liam P. White2014-04-061-11/+8
| | | | | functionality) (bzr r13090.1.48)
* const ....Johan B. C. Engelen2013-01-171-9/+9
| | | (bzr r12039)
* UI uniformisationKris De Gussem2012-10-211-4/+4
| | | (bzr r11817)
* Fix "shift disables snapping" for LPEs and for editing objectsDiederik van Lierop2012-10-141-6/+6
| | | | | | Fixed bugs: - https://launchpad.net/bugs/1065931 (bzr r11800)
* Removed unneeded header style filename #definesJon A. Cruz2012-06-171-1/+0
| | | (bzr r11503)
* Removed outdated classes.Jon A. Cruz2012-06-171-0/+2
| | | | | Pruned header to not introduce extraneous includes. (bzr r11502)
* Adding base configurable sizing of controls/handles.Jon A. Cruz2012-05-031-9/+6
| | | (bzr r11316)
* cleanup knotholder code for LPEsJohan B. C. Engelen2012-04-071-26/+40
| | | (bzr r11170)
* turn SPPath into a class, and add some methods...Johan B. C. Engelen2012-01-171-1/+1
| | | (bzr r10897)
* remove many needless references to n-art-bpath.hJohan B. C. Engelen2008-08-031-1/+0
| | | (bzr r6540)
* 2geomify a lot of NR::Points to Geom::PointJohan B. C. Engelen2008-08-011-18/+18
| | | (bzr r6513)
* Make LPE knotholder handles snapMaximilian Albert2008-08-011-7/+13
| | | (bzr r6506)
* Rename isLPEParam() to isDeletable(), create new class LPEKnotHolderEntity ↵Maximilian Albert2008-07-291-9/+3
| | | | | and make inheritance from it a bit less clumsy (bzr r6448)
* Fix wrong descriptionsMaximilian Albert2008-06-181-3/+3
| | | (bzr r5973)
* First step towards making helper paths for LPE items work betterMaximilian Albert2008-06-161-0/+2
| | | (bzr r5954)
* whitespaceMaximilian Albert2008-06-121-2/+2
| | | (bzr r5905)
* warning cleanupJon A. Cruz2008-06-111-3/+3
| | | (bzr r5877)
* Get rid of get_bpath() in lpe-tangent_to_curve.cppMaximilian Albert2008-06-101-3/+2
| | | (bzr r5874)
* Write all effect parameters to SVG when a LPE knotholder handle is ungrabbedMaximilian Albert2008-06-101-24/+0
| | | (bzr r5870)
* Re-add two handles for PerpBisector LPE (we don't add the other two because ↵Maximilian Albert2008-06-081-6/+11
| | | | | | | they would duplicate the path's own handles and the correct solution would be to allow knotholders and nodepaths at the same time). Put the KnotHolderEntity classes into their own namespaces to avoid clashes. (bzr r5857)
* Better way to add LPE knotholder handles; now it happens semi-automatically ↵Maximilian Albert2008-06-081-49/+34
| | | | | in a similar way as adding LPE parameters. (bzr r5856)
* Make knotholders for LPE items finally work; each effect can now overload ↵Maximilian Albert2008-06-081-84/+145
| | | | | | | the addKnotHolderHandles() method to add handles which control its parameters. There is now also a virtual onKnotUngrabbed() method for each knotholder entity which can be used to do cleanup tasks (for LPE parameters it currently writes the value to SVG, although this should probably happen automatically) (bzr r5855)
* set eol-style:native for recently added filesMaximilian Albert2008-06-021-170/+170
| | | (bzr r5783)
* LPE STACKING!Johan B. C. Engelen2008-05-301-148/+170
| | | | | (many thanks to the french students who made this.) (bzr r5766)
* Add possibility to let the 'tangent' have a fixed angle relative to the curveMaximilian Albert2008-05-191-1/+8
| | | (bzr r5709)
* Add handles to adapt tangent lengthMaximilian Albert2008-05-191-4/+44
| | | (bzr r5708)
* Forgot to add two files in commit #18667. Sorry for breaking the build for a ↵Maximilian Albert2008-05-191-0/+101
minute! (bzr r5707)