summaryrefslogtreecommitdiffstats
path: root/src/ui/tool (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused variable and put well a constantJabier Arraiza Cenoz2014-11-031-4/+1
| | | (bzr r13669)
* Move more UI code into ui/Liam P. White2014-10-051-1/+1
| | | (bzr r13341.1.253)
* This push add suport to helper paths redraw to nodes, handles and knots. Jabier Arraiza Cenoz2014-09-291-1/+10
| | | | | This redraw at mouse movement. Whith knots also redraw at button release event (bzr r13341.1.227)
* remove magic numbers from bsplineJabier Arraiza Cenoz2014-09-232-21/+30
| | | (bzr r13341.1.219)
* fix bug -bad power- inserting nodes near cusp nodes in bsplineJabier Arraiza Cenoz2014-09-231-3/+31
| | | (bzr r13341.1.218)
* Fix a bug in BSpline, happend pressing any key hover a modified weight ↵Jabier Arraiza Cenoz2014-09-221-0/+1
| | | | | handle -it buggy reset to default weight-. (bzr r13341.1.216)
* Fix bug moving nodes in bspline modeJabier Arraiza Cenoz2014-09-161-1/+1
| | | (bzr r13341.1.210)
* fixing cusp node bug on bspline -problems moving nodes because tiny handlesJabier Arraiza Cenoz2014-09-151-1/+3
| | | (bzr r13341.1.209)
* Update to experimental r13465Liam P. White2014-08-087-18/+92
|\ | | | | (bzr r13090.1.102)
| * Massive performance improvment for basic node operations with thousands of nodesLiam P. White2014-08-087-18/+92
| | | | | | (bzr r13341.1.124)
* | Update to experimental r13460Liam P. White2014-08-061-2/+4
|\| | | | | (bzr r13090.1.98)
| * Fixed some redraw problems moving nodes in bspline modeJabier Arraiza Cenoz2014-08-041-2/+4
| | | | | | (bzr r13341.1.115)
* | Update to experimental r13418Liam P. White2014-07-052-6/+17
|\| | | | | (bzr r13090.1.87)
| * Add LPE fillet-chamferJabier Arraiza Cenoz2014-07-022-6/+17
| | | | | | (bzr r13341.1.74)
* | Update to experimental (r13376)Liam P. White2014-05-172-3/+6
|\| | | | | (bzr r13090.1.79)
| * fix C++11 compilationJohan B. C. Engelen2014-05-151-0/+3
| | | | | | (bzr r13341.1.30)
| * Fixed a bug in bspline with snaps and 1 sice segments. Pointed by LiamWJabier Arraiza Cenoz2014-05-131-1/+1
| | | | | | (bzr r13341.1.12)
| * Patch from Jabierxto to fix a bug I reported off-tracker.Josh Andler2014-05-121-2/+2
| | | | | | (bzr r13341.3.1)
* | Update to trunk/integrate BSplineLiam P. White2014-05-096-27/+326
|\| | | | | (bzr r13090.1.73)
| * adding const _pathmanipulatos staff to handles (handles also have tips)Jabier Arraiza Cenoz2014-05-051-0/+4
| | | | | | (bzr r11950.1.341)
| * adding Vinícius work whith node tipsJabier Arraiza Cenoz2014-05-054-15/+18
| |\ | | | | | | (bzr r11950.1.339)
| | * Enabling path manipulator to comunicate if paths are bspline whenVinícius dos Santos Oliveira2014-05-054-12/+17
| |/ | | | | | | | | | | | | | | accessing const objects. This change was required to correctly show on the GUI whether or not a node was a bspline. (bzr r11950.8.1)
| * A refactor for fixing some issues. Pending how to handle static functions Jabier Arraiza Cenoz2014-04-013-42/+45
| | | | | | | | | | | | | | Vinícius for handle tips in his static functions i know two ways: A: A bool property in node class of node.h to handle if curve is bspline B: Call another non static function from the static tips one -not tested- (bzr r11950.1.323)
| * Some node.cpp/h work moved to path_manipulator.Jabier Arraiza Cenoz2014-03-315-110/+118
| | | | | | | | | | | | | | | | | | | | | | | | | | Header variable bsplineWeight removed from all. Simplification of code with less functions in path_manipulator. To fix: tips stop working because is handled by two static functions and couldent call to path_manipulator from here. Vinícius, any work arround? lines 480,481,1426,1427,1462 of node.cpp. gez: ¿Puedes probar si notas algun bug o problema? principalmente con la herramienta nodo, gracias. (bzr r11950.1.322)
| * use <cmath> instead <math.h> by point of ViníciusJabier Arraiza Cenoz2014-03-311-1/+1
| | | | | | (bzr r11950.1.321)
| * update to trunkJabier Arraiza Cenoz2014-03-301-1/+5
| |\ | | | | | | (bzr r11950.1.317)
| * \ update to trunkJabier Arraiza Cenoz2014-03-232-0/+8
| |\ \ | | | | | | | | (bzr r11950.1.311)
| * | | Fix to solve static var in isBSpline functionJabier Arraiza Cenoz2014-03-162-12/+12
| | | | | | | | | | | | (bzr r11950.1.298)
| * | | simplify the code in isBSplineJabier Arraiza Cenoz2014-03-141-2/+3
| | | | | | | | | | | | (bzr r11950.1.297)
| * | | disabling cache approach for isBSpline function, pointed by ViníciusJabier Arraiza Cenoz2014-03-142-8/+9
| | | | | | | | | | | | (bzr r11950.1.296)
| * | | Adding default argument to PathManipulator::isBSpline.Vinícius dos Santos Oliveira2014-03-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Default argument is used when function is called with missing arguments. The default was chosen to 'true', because it is the safest value in this context. From now on, the function can be called like "_pm.isBSpline()", which is more intuitive. Still, I haven't studied the code enough to determine if this cache behaviour (force the user to think if cache is correct) is appropriate. (bzr r11950.7.2)
| * | | Small code simplificationVinícius dos Santos Oliveira2014-03-141-5/+1
| | | | | | | | | | | | (bzr r11950.7.1)
| * | | Fixing branch problemsJabier Arraiza Cenoz2014-03-055-44/+46
| | | | | | | | | | | | (bzr r11950.1.281)
| * | | TranslationsJabier Arraiza Cenoz2014-03-055-46/+44
| | | | | | | | | | | | (bzr r11950.1.279)
| * | | translations from spanish to english done, it might need a little review, ↵Guiu Rocafort2014-03-055-44/+46
| | | | | | | | | | | | | | | | | | | | but everything seems ok (bzr r11950.5.1)
| * | | Substitute isBSpline property by a cached function isBSpline(bool)Jabier Arraiza Cenoz2014-03-014-27/+29
| | | | | | | | | | | | (bzr r11950.1.261)
| * | | adding some commentsJabier Arraiza Cenoz2014-02-281-2/+1
| | | | | | | | | | | | (bzr r11950.1.260)
| * | | Removing hack for force show red lines in bspline modeJabier Arraiza Cenoz2014-02-081-7/+0
| | | | | | | | | | | | (bzr r11950.1.251)
| * | | add comment to bspline red outline hackJabier Arraiza Cenoz2014-01-301-0/+2
| | | | | | | | | | | | (bzr r11950.1.244)
| * | | Hack to can show/hide bspline linesJabier Arraiza Cenoz2014-01-301-2/+3
| | | | | | | | | | | | (bzr r11950.1.243)
| * | | fix bug compilingJabier Arraiza Cenoz2014-01-301-1/+1
| | | | | | | | | | | | (bzr r11950.1.242)
| * | | show outline by default in bspline, tnx to su_v suggestionJabier Arraiza Cenoz2014-01-301-0/+3
| | | | | | | | | | | | (bzr r11950.1.241)
| * | | show outline like normal paths, by good su_v suggestionJabier Arraiza Cenoz2014-01-301-2/+2
| | | | | | | | | | | | (bzr r11950.1.239)
| * | | update to trunkJabier Arraiza Cenoz2014-01-182-13/+2
| |\ \ \ | | | | | | | | | | (bzr r11950.1.235)
| * | | | Fix a bug whith oposite handles on node move,and a little cleanupJabier Arraiza Cenoz2014-01-092-14/+11
| | | | | | | | | | | | | | | (bzr r11950.1.232)
| * | | | Fixed a boring bug sometimes curves be converted to lines, increasing a bit ↵Jabier Arraiza Cenoz2014-01-022-7/+20
| | | | | | | | | | | | | | | | | | | | | | | | | the distance from the handle to the line (bzr r11950.1.230)
| * | | | fix a bug whith degenerate handlesJabier Arraiza Cenoz2013-12-311-1/+1
| | | | | | | | | | | | | | | (bzr r11950.1.229)
| * | | | Spanish comment of freehand-base.cppJabier Arraiza Cenoz2013-12-302-2/+1
| | | | | | | | | | | | | | | (bzr r11950.1.224)
| * | | | Spanish comment of path-manipulator-cppJabier Arraiza Cenoz2013-12-301-14/+18
| | | | | | | | | | | | | | | (bzr r11950.1.223)
| * | | | Spanish comment of multi-path-manipulator-cppJabier Arraiza Cenoz2013-12-301-0/+2
| | | | | | | | | | | | | | | (bzr r11950.1.222)