What is the best way to rotate a CGPoint on a grid

2019-02-12 15:28发布

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?

5条回答
你好瞎i
2楼-- · 2019-02-12 16:07
Animai°情兽
3楼-- · 2019-02-12 16:07

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.

查看更多
男人必须洒脱
4楼-- · 2019-02-12 16:18

Using Vladimir’s answer, below is the Swift 3 answer:

    let initialPoint = CGPoint(x: 100, y: 100) // the point you want to rotate
    let translateTransform = CGAffineTransform(translationX: initialPoint.x, y: initialPoint.y)
    let rotationTransform = CGAffineTransform(rotationAngle: angle)
    let customRotation = (rotationTransform.concatenating(translateTransform.inverted())).concatenating(translateTransform)
    rotatedPoint = initialPoint.applying(customRotation)
查看更多
走好不送
5楼-- · 2019-02-12 16:20

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).

查看更多
Explosion°爆炸
6楼-- · 2019-02-12 16:23

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 = CGAffineTransformMakeTranslation(customCenter.x, customCenter.y);
CGAffineTransform rotationTransform = CGAffineTransformMakeRotation(angle);

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

rotatedPoint = CGPointApplyAffineTransform(initialPoint, customRotation);
查看更多
登录 后发表回答