如何获取画布对象/矩形的中心点。我将 Konvajs 库用于我的小项目。在 konva 文档中说,您需要将点居中以获得良好的旋转。 http://konvajs.github.io/docs/animations/Rotation.html
前任
var yellowRect = new Konva.Rect({
x: 220,
y: 75,
width: 100,
height: 50,
fill: 'yellow',
stroke: 'black',
strokeWidth: 4,
offset: {
x: 50 // how to solve this using formula so it will dynamic,
y: 25 // how to solve this using formula so it will dynamic
}
});