取得方法 キャンバス オブジェクト/長方形の中心点。私は小さなプロジェクトに 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
}
});