aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Bornand <nicolas74@gmail.com>2014-05-11 12:03:44 +0200
committerNicolas Bornand <nicolas74@gmail.com>2014-05-11 12:03:44 +0200
commit23f13a83847aad142aa9a1241e585c2778d0a05a (patch)
tree925674e33a33c5d407946df52b96612654db8101
parent647bdc5802c3959041c5e1134cba3b289038e67d (diff)
downloadplayGraph-23f13a83847aad142aa9a1241e585c2778d0a05a.tar.gz
playGraph-23f13a83847aad142aa9a1241e585c2778d0a05a.tar.bz2
playGraph-23f13a83847aad142aa9a1241e585c2778d0a05a.zip
Merge origin/master
Conflicts: app/js/services.js
-rw-r--r--app/js/directives.js9
1 files changed, 5 insertions, 4 deletions
diff --git a/app/js/directives.js b/app/js/directives.js
index 4bdd45b..f1c59b7 100644
--- a/app/js/directives.js
+++ b/app/js/directives.js
@@ -35,9 +35,10 @@ app.directive('pgLine', function () {
// Create a new path and set its stroke color to black:
path = new paper.Path({
segments: [event.point],
- strokeColor: 'black',
- strokeWidth: 2,
- fullySelected: true
+ strokeColor: 'rgba(7,140,255,.5)',
+ strokeWidth: 100,
+ fullySelected: true,
+ strokeCap: 'round'
});
selected = null;
};
@@ -63,7 +64,7 @@ app.directive('pgLine', function () {
var points = Array();
// When the mouse is released, simplify it:
- path.smooth();
+ path.simplify(1);
for(var i=0; i<path._segments.length; i++)
{