Im using KineticJS script.I've a group of objects and i want to rotate only the rectangle that's inside this group.When i add the group for the first time i set position and offset manually and group rotates well.When i resize rectangle inside that group seems coordinate system is changing.When i click rotate it gets back to old offset position then other times it rotates well.This is happening every time i resize the rectangle(inside the group). So i want to know how to remove that additinal step when i rotate after resize the rectangle.I want to rotate only around center point!
I provided some code it might help or at least guide what im doing there.
selectedShape in this case is rectangle inside group that will be rotate
selectedShape.setPosition(0, 0);
var offsetX = selectedShape.getWidth() / 2;
var offsetY = selectedShape.getHeight() / 2;
group.setOffset(offsetX, offsetY);
if (isForRotate)
{
group.rotate(Math.PI / 4);
}
//here i reset positions of anchors
topLeft.setPosition(selectedShape.attrs.x, selectedShape.attrs.y);
topRight.setPosition(Number(selectedShape.attrs.x) + Number(selectedShape.getWidth()), selectedShape.attrs.y);
bottomLeft.setPosition(selectedShape.attrs.x, Number(selectedShape.attrs.y) + Number(selectedShape.getHeight()));
bottomRight.setPosition(Number(selectedShape.attrs.x) + Number(selectedShape.getWidth()), Number(selectedShape.attrs.y) + Number(selectedShape.getHeight()));