PathEditing example: add black stroke to paths.

This commit is contained in:
Jonathan Puckey 2011-07-17 18:16:47 +02:00
parent 61fa298780
commit 6808dc4b1c

View file

@ -30,7 +30,8 @@
var lightness = (Math.random() - 0.5) * 0.4 + 0.4;
var hue = Math.random() * 360;
path.style = {
fillColor: new HSLColor(hue, 1, lightness)
fillColor: new HSLColor(hue, 1, lightness),
strokeColor: 'black'
};
};