vote up 0 vote down star

I want to rotate a CGPoint on the screen depending on the angle and the rotation is anchored on another point. Was wondering what is the most efficient way of doing this?

flag

44% accept rate
Do you mean you want to rotate something around a point? – Jasarien Oct 20 at 15:10
Yea obviously from a point of origin. – Frank Oct 20 at 15:13

4 Answers

vote up 2 vote down check

You can also use that:

rotatedPoint = CGPointApplyAffineTransform(initialPoint, CGAffineTransformMakeRotation(angle));

EDIT: to perform rotation around custom point you must do like Adam described in his answer. Using CGAffineTransform it must look something like:

CGAffineTransform translateTransform = CGAffineTransformMakeTransation(customCenter.x, customCenter.y);
CGAffineTransform rotationTransform = CGAffineTransformMakeRotation(angle);

CGAffineTransform customRotation = CGAffineTransformConcat(CGAffineTransformConcat( CGAffineTransformInvert(translateTransform), rotationTransform), translateTransform);

rotatedPoint = CGPointApplyAffineTransform(initialPoint, customRotation);
link|flag
does this handle rotation on another point aside on itself? – Frank Oct 20 at 17:17
just made a few changes on that code, CGAffineTransformMakeTransation is CGAffineTransformMakeTranslation, minor typo. and for angle, it has to be radian but other than that this works thx! – Frank Oct 21 at 15:18
vote up 0 vote down

You can also let Core Animation do it for you. Take a look at Apple's docs on layer geometry and transforms in the Core Animation Programming Guide

All you have to do is set the anchorPoint of the layer and then you can apply the transform with something like this:

CABasicAnimation *rotationAnimation;
rotationAnimation = [CABasicAnimation 
                     animationWithKeyPath:@"transform.rotation.z"];

[rotationAnimation setFromValue:DegreesToNumber(0)];
[rotationAnimation setToValue:DegreesToNumber(360)];

DegreesToNumber converts degrees to radians and returns an NSNumber representation.

I'm not sure what you're attempting to do exactly, but often Core Animation is a great choice for visualizations.

-Matt

link|flag
vote up 1 vote down

Use a CGAffineTransform.

link|flag
vote up 1 vote down

Use a 2D rotation matrix. If you want to rotate a point counterclockwise about the origin by an angle of angle, then you would do this:

CGPoint RotatePointAboutOrigin(CGPoint point, float angle)
{
    float s = sinf(angle);
    float c = cosf(angle);
    return CGPointMake(c * point.x - s * point.y, s * point.x + c * point.y);
}

If you want to rotate about a point other than the origin, you'll have to first subtract the center of rotation from your point, rotate it using the above, and then add back in the center of rotation (this is called conjugation in matrix theory).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.