summaryrefslogtreecommitdiffstats
path: root/src/line-geometry.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Change the data type of size/width/height of the controls to unsigned intDiederik van Lierop2019-05-201-1/+1
|
* 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-15/+3
| | | | | 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-2/+2
| | | | This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
* Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin2018-04-291-2/+2
|
* Removed unused includes, decreased compilation time. Once againAdrian Boguszewski2016-08-031-1/+0
| | | (bzr r15034)
* Reverted changes to r15024 after many building problemsAdrian Boguszewski2016-07-281-0/+1
| | | (bzr r15027)
* Removed unused includes, decrease compilation timeAdrian Boguszewski2016-07-281-1/+0
| | | (bzr r15025)
* Remove sp_desktop_document and finish cleanup of desktop-handles.hLiam P. White2014-12-211-1/+1
| | | (bzr r13820)
* Purge sp_desktop_controlsLiam P. White2014-12-211-2/+2
| | | (bzr r13819)
* Replace INKSCAPE.active_desktop() by SP_ACTIVE_DESKTOP for easier grepabilityLiam P. White2014-11-261-2/+2
| | | (bzr r13768)
* 5. Refactoring of Application class: make copy/assignment operators private, ↵Liam P. White2014-06-271-2/+2
| | | | | disallow pointers to Application (bzr r13341.5.9)
* Replaced one more operator.Markus Engel2014-03-301-1/+1
| | | (bzr r13238)
* cppcheck stuffKris De Gussem2014-01-201-7/+9
| | | (bzr r12963)
* Header cleaning for GTK+3 migrationAlex Valavanis2012-06-051-0/+1
| | | (bzr r11460)
* Centralized line creation and enhanced visibility.Jon A. Cruz2012-05-091-4/+4
| | | (bzr r11350)
* C++ification of SPCtrlLine in preparation of visibility improvements.Jon A. Cruz2012-05-041-5/+4
| | | (bzr r11321)
* 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)
* Next roud of NR ==> Geom conversionMaximilian Albert2008-09-181-37/+37
| | | (bzr r6839)
* NR::Maybe => boost::optionalJohan B. C. Engelen2008-08-051-5/+5
| | | (bzr r6569)
* Fundamentally reworked version of the 3D box tool (among many other things, ↵Maximilian Albert2007-12-131-49/+13
| | | | | this fixes bugs #168900 and #168868). See mailing list for details. Sorry for this single large commit but it was unfeasible to keep the history. (bzr r4224)
* Infrastructure to set direction of infinite VPs (now adjustable by some ↵Maximilian Albert2007-09-011-5/+0
| | | | | shortcuts; this may be removed later on) (bzr r3657)
* Constrained center-dragging for 3D boxes (with Ctrl)Maximilian Albert2007-08-291-6/+8
| | | (bzr r3608)
* Remove some warnings and fix crash in 3D box toolMaximilian Albert2007-08-281-1/+2
| | | (bzr r3601)
* Various small cleanupsMaximilian Albert2007-08-261-2/+7
| | | (bzr r3587)
* Rewrite of z-order code for 3D boxes, first stage (hopefully this is finally ↵Maximilian Albert2007-08-261-2/+7
| | | | | the right approach) (bzr r3586)
* committed patch 1777220 by John Faith to fix compilation of Inkscape on OS X ↵JiHO2007-08-201-1/+2
| | | | | | | | | | | | | | | | | | | | 10.3 (Panther) g_return_val_if_fail(fabs(denom) > 1e-6, NR::Nothing()); is apparently causing gcc 3.3 to fail (OS X 10.3) with the error: line-geometry.cpp: In member function `virtual NR::Maybe<NR::Point> Box3D::Line::intersect(const Box3D::Line&)': line-geometry.cpp:57: error: parse error before `;' token If the NR::Nothing() is simply broken out as its own variable instead of including it in g_return_val_if_fail(), then the file compiles. The root cause is not known, but I assume this is a gcc bug. This was the only source change needed for building svn 15634 for OS X 10.3. (bzr r3548)
* Enable center-dragging of boxes ('in perspective') within the XY-planeMaximilian Albert2007-08-171-0/+65
| | | (bzr r3497)
* Draw perspective lines for infinite VPs, too (they are updated during ↵Maximilian Albert2007-08-171-0/+82
| | | | | scrolling or zooming); don't create knots for infinite VPs on the canvas (bzr r3495)
* First (very limited) version of the 3D box tool; allows for drawing of new ↵Maximilian Albert2007-06-211-0/+112
boxes in a fixed perspective without any live interaction. (bzr r3084)