how can i draw this on a kinetic js layer:
ctx.beginPath();
ctx.moveTo(47.1, 139.8);
ctx.lineTo(50.5, 137.6);
ctx.lineTo(50.5, 135.6);
.
.
.
ctx.bezierCurveTo(92.0, 200.2, 88.4, 201.2, 87.5, 201.2);
.
.
.
ctx.closePath();
ctx.fillStyle = color;
ctx.fill();
I already setup the stage and layers. I want to draw the custom path generated by a tool in kinetic js. Thanks