Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

1 Answer

up vote 1 down vote accepted

you can create custom shapes with the Kinetic.Shape constructor. Here's an example:

http://www.html5canvastutorials.com/kineticjs/html5-canvas-kineticjs-shape-tutorial/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.