Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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()));
share|improve this question

migrated from dsp.stackexchange.com Dec 17 '12 at 22:40

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.