This commit is contained in:
Anton Lavrenov 2020-03-29 09:34:47 -05:00
parent 010729dc19
commit 4f50d42401
2 changed files with 53 additions and 1352 deletions

1377
konva.js

File diff suppressed because it is too large Load Diff

View File

@ -118,33 +118,17 @@ suite('Arrow', function() {
points: [50, 50, 150, 50],
stroke: 'blue',
fill: 'blue',
strokeWidth: 1,
// large stroke width will not work :(
strokeWidth: 5,
draggable: true,
tension: 0,
tension: 0
});
layer.add(arrow);
stage.add(layer);
arrow.cache();
layer.draw();
cloneAndCompareLayer(layer, 200);
// visual debug
// var back = new Konva.Rect({
// stroke: 'black'
// });
// layer.add(back);
// stage.on('mousemove',() => {
// const pos = stage.getPointerPosition();
// const points = [arrow.points()[0], arrow.points()[1], pos.x, pos.y];
// arrow.points(points);
// arrow.cache();
// console.log(arrow.points());
// back.setAttrs(arrow.getClientRect());
// layer.batchDraw();
// })
});
});