summaryrefslogtreecommitdiffstats
path: root/src/sp-spiral.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* (cppcheck and janitorial tasks:) C-style casting to C++-style castingKris De Gussem2012-02-251-4/+4
| | | (bzr r11011)
* add underscores to some member variables.Johan B. C. Engelen2012-01-171-6/+4
| | | | | add some const stuff (bzr r10900)
* Warning and uninitialized variable cleanup.Jon A. Cruz2012-01-081-41/+29
| | | (bzr r10860)
* Refactoring of the snapping preferences; mainly about storing all toggles in ↵Diederik van Lierop2011-08-221-8/+3
| | | | | a single array, instead of each having its own member variable (bzr r10569)
* - rename SPItem::i2d_affine to i2dt_affine, to clarify that it is ↵Johan B. C. Engelen2011-07-171-2/+2
| | | | | | | item-to-desktop, not item-to-document. This should make it easier to spot bugs. - tag some instances where the document-to-desktop transform has been hardcoded (bzr r10466)
* - Add a third group of snap sources/targets, called ¨others¨ (before we ↵Diederik van Lierop2011-06-261-1/+1
| | | | | | | | had only ¨bounding box¨ and nodes (see bug #788178) - Fix the display of the snap source - Fix snapping of guides to other guides & grids (bzr r10372)
* add curve before LPE to SPShape. this is useful for helperpath display. It ↵Johan B. C. Engelen2011-04-011-0/+2
| | | | | | | | was inspired from fixing bug 407008 Fixed bugs: - https://launchpad.net/bugs/407008 (bzr r10142)
* Finished cleanup of outdated SP_OBJECT_REPR C macro.Jon A. Cruz2011-02-221-4/+4
| | | (bzr r10067)
* update to latest 2geom !Johan B. C. Engelen2011-02-021-1/+1
| | | (bzr r10025)
* Merge and cleanup of GSoC C++-ification project.Jon A. Cruz2010-12-121-14/+13
|\ | | | | (bzr r9945.1.1)
| * SPShape c++ified to the extent it was possible and more changes done for XML ↵Abhishek Sharma Public2010-07-141-4/+4
| | | | | | | | | | privatisation. Major changes yet to come. (bzr r9546.1.7)
| * SPObject c++ification finalized along with the beginning of XML ↵Abhishek Sharma Public2010-07-121-7/+7
| | | | | | | | | | Privatisation tweaks (bzr r9546.1.6)
| * This is the first c++ification commit from me. It handles sp-line, ↵Abhishek Sharma Public2010-06-291-1/+1
| | | | | | | | | | sp-polyline, sp-item and marks the onset of document c++ification as well. Users can check performace increase with [/usr/bin/time -v inkscape_binary_with_commandline_options]. (bzr r9546.1.1)
* | 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)
* Refactoring the snapping API (making it easier to maintain and understand ↵Diederik van Lierop2010-01-091-338/+337
| | | | | for the devs) (bzr r8960)
* fix rendering of testcase errorhandling-nosuchlpe.svg: make sure shapes do ↵bulia byak2009-08-221-2/+15
| | | | | not calculate the curve if they have a broken lpe, instead reading it directly from d= and issuing a warning (bzr r8520)
* Revert recent refactoring changes by johnce because they break the build, ↵Maximilian Albert2009-08-061-2/+2
| | | | | which cannot be fixed easily. (bzr r8422)
* SPDocument->Documentjohnce2009-08-051-2/+2
| | | (bzr r8404)
* Make stars and spirals escapableDiederik van Lierop2009-07-091-1/+1
| | | (bzr r8245)
* The snap indicator's tooltip now displays "A to B", whereas before it only ↵Diederik van Lierop2009-02-201-4/+5
| | | | | displayed "B". (bzr r7335)
* - Snap to the midpoint of shapes and bboxesDiederik van Lierop2009-01-181-3/+21
| | | | | | | - Snap to the midpoint of paths and bbox edges - Refactor the snapping toggle, i.e. what snaps to what when toggling a specific option in the snapping toolbar PS: icons.svg has been modified, so use "make install" if needed (bzr r7144)
* use 2geom bezier fitting (is copy of inkscape's)Johan B. C. Engelen2008-12-101-2/+2
| | | (bzr r6983)
* Merge from fe-movedTed Gould2008-11-211-2/+11
| | | (bzr r6891)
* From trunkTed Gould2008-10-271-3/+3
| | | (bzr r6885)
* Some NR::Point ==> Geom::Point replacementsMaximilian Albert2008-09-181-18/+18
| | | (bzr r6835)
* plumb XML::Documents in everywhereMenTaLguY2008-06-111-4/+3
| | | (bzr r5884)
* for spirals, use 2geompath for svg_write: ↵Johan B. C. Engelen2008-06-061-26/+16
| | | | | sp_svg_write_path(np->curve->get_pathvector() ); (bzr r5844)
* merge gsoc2008_johan_path2geom into trunkJohan B. C. Engelen2008-06-061-1/+1
| | | (bzr r5823)
* complete adding const to have only NArtBpath const * get_bpath() const; for ↵Johan B. C. Engelen2008-05-091-1/+1
| | | | | 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)
* struct SPCurve => class SPCurveJohan B. C. Engelen2008-05-051-7/+6
| | | | | change all sp_curve_methods functions to SPCurve::methods. (bzr r5609)
* - Created a SPLPEItem class that handles applying a LPE to an ItemBastien Bouclet2008-03-281-4/+8
| | | | | | - LPEs can now be applied to groups - Updated the bend path to work properly with groups (bzr r5219)
* Commit LivePathEffect branch to trunk!Johan B. C. Engelen2007-08-141-3/+31
| | | | | (disabled extension/internal/bitmap/*.* in build.xml to fix compilation) (bzr r3472)
* start switching sp_repr_new* over to XML::Document::create*, and rename ↵MenTaLguY2007-01-211-1/+3
| | | | | create methods to match DOM (bzr r2253)
* eliminate direct accesses to SPCurve::bpathMenTaLguY2006-05-091-1/+1
| | | (bzr r787)
* fix 1424662: as in star, set shape before writing d=bulia byak2006-02-161-0/+3
| | | (bzr r153)
* bulk trailing spaces removal. consistency through MD5 of binaryRalf Stephan2006-02-151-39/+39
| | | (bzr r149)
* moving trunk for module inkscapeMenTaLguY2006-01-161-0/+617
(bzr r1)