I would like to drawLine with kineticJS and then use transmition.
line = new Kinetic.Line({
points: [0, 0, 50, 50],
stroke: "red"
});
The problem is that I cannot use transmition for points.
Any workaround? Like drawing polygon which looks like line?