오윤석

brush 끝에 round 처리

...@@ -22,6 +22,9 @@ class Brush extends ComponentInterface { ...@@ -22,6 +22,9 @@ class Brush extends ComponentInterface {
22 return new fabric.Path(paths, { 22 return new fabric.Path(paths, {
23 stroke: this.color.getRgba(), 23 stroke: this.color.getRgba(),
24 strokeWidth: this.size, 24 strokeWidth: this.size,
25 + fill: null,
26 + strokeLineCap: "round",
27 + strokeLineJoin: "round",
25 }); 28 });
26 } 29 }
27 30
......