summaryrefslogtreecommitdiffstats
path: root/src/snapped-curve.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-01-02modernize loopsMarc Jeanmougin1-5/+5
2018-11-08Clarify licensesMax Gaukler1-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
2018-06-18Run clang-tidy’s modernize-use-equals-default pass.Emmanuel Gil Peyrot1-2/+1
This replaces empty constructors and destructors with the default keyword.
2018-06-18Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot1-1/+1
This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
2016-08-03Removed unused includes, decreased compilation time. Once againAdrian Boguszewski1-1/+0
(bzr r15034)
2016-07-28Reverted changes to r15024 after many building problemsAdrian Boguszewski1-0/+1
(bzr r15027)
2016-07-28Removed unused includes, decrease compilation timeAdrian Boguszewski1-1/+0
(bzr r15025)
2012-02-141) Add checkboxes for perpendicular and tangential snapping to the document ↵Diederik van Lierop1-1/+3
properties dialog (on the snap tab) 2) Newly created guides (dragged off the ruler) will take on the angle of the curve that's being snapped to (either perpendicularly or tangentialy, depending of the settings in the document properties dialog) (bzr r10975)
2011-10-15cppcheckKris De Gussem1-8/+8
(bzr r10678)
2011-10-03Another minor pass of Doxygen cleanup.Jon A. Cruz1-1/+1
(bzr r10659)
2011-09-21initialize value as const (clang complains about this)Campbell Barton1-1/+1
(bzr r10643)
2011-09-18Snap to guide-path intersections, and don't snap to paths when only path ↵Diederik van Lierop1-2/+91
intersections are asked for Fixed bugs: - https://launchpad.net/bugs/847457 - https://launchpad.net/bugs/850982 (bzr r10639)
2011-02-02update to latest 2geom !Johan B. C. Engelen1-2/+2
(bzr r10025)
2010-10-29- Constrained snap: proper implementation of the preference to snap the ↵Diederik van Lierop1-1/+1
mouse pointer or handle itself (instead of projecting it first onto the constraint) - Fix a crash in SnapManager::multipleConstrainedSnaps (bzr r9866)
2010-08-05Wholesale cruft removal part 4; fix crash when rendering guidesKrzysztof Kosi??ski1-6/+6
(bzr r9508.1.48)
2010-05-22Snapping: get rid of the false positives when calculating intersectionsDiederik van Lierop1-1/+15
(bzr r9442)
2010-05-08Fix bounding box snapping (LP562205, comment 6, issue II)Diederik van Lierop1-2/+2
(bzr r9402)
2010-01-19When snapping to a bounding box, flash that bounding box together with the ↵Diederik van Lierop1-17/+24
snap indicator (bzr r8999)
2009-12-24refactoring the snapping code (laying the groundwork for my next commit ↵Diederik van Lierop1-3/+5
which reduces snap jitter) (bzr r8906)
2009-03-14Remove obsolete includes of libnr files in the snapping codeDiederik van Lierop1-2/+0
(bzr r7491)
2009-02-20The snap indicator's tooltip now displays "A to B", whereas before it only ↵Diederik van Lierop1-3/+5
displayed "B". (bzr r7335)
2009-02-15After snapping, show a tooltip together with the snap indicatorDiederik van Lierop1-1/+3
(bzr r7296)
2009-01-25Remove some SP_ACTIVE_DESKTOP() callsDiederik van Lierop1-11/+6
(bzr r7174)
2008-12-30Remove some obsolete from_2geom() callsDiederik van Lierop1-1/+1
(bzr r7043)
2008-12-141) snap midpoints of line segments (both as source and as target)Diederik van Lierop1-1/+1
2) snap intersections within a single shape (as source; as target was already implemented) (bzr r7008)
2008-12-10- Fix bug #304405 (snapping to an intersection of lines at infinity is wrong)Diederik van Lierop1-22/+25
- Replace tabs by spaces (bzr r6985)
2008-11-24Add an option to the preferences to _only_ snap the node closest to the ↵Diederik van Lierop1-2/+2
mouse pointer (bzr r6899)
2008-11-231) Improve the way the distance to the pointer is taken into account when ↵Diederik van Lierop1-10/+10
finding the best snap 2) Use this distance also when snapping nodes in the path editor 3) Add a slider in the preferences dialog to control the weighing of this distance (bzr r6895)
2008-09-21- refactor snapping code, removing code duplicationDiederik van Lierop1-145/+147
- fix snapping to page corners (bzr r6863)
2008-08-15Use new methods from 2geom's APIDiederik van Lierop1-2/+1
(bzr r6635)
2008-08-11Move all of the snapper code to 2geomDiederik van Lierop1-5/+5
(bzr r6606)
2008-08-08Snap to intersections of any kind of path (were we previously only could ↵Diederik van Lierop1-0/+146
snap to intersections of line-segments) (bzr r6597)