チェックこれをあなたのアイデアを共有し、指定アフィン変換行列を使用して、パス内のすべてのポイントを変換します。
- (void)applyTransform:(CGAffineTransform)transform
私はこれを試しませんでした。しかし、ここにNSBezierPath
をリンクrotating-nsbezierpath-objectsからローテーションする方法があります。 UIBezierPath
で同様のアプローチを使用してください。
- (NSBezierPath*)rotatedPath:(CGFloat)angle aboutPoint:(NSPoint)cp
{
// return a rotated copy of the receiver. The origin is taken as point <cp> relative to the original path.
// angle is a value in radians
if(angle == 0.0)
return self;
else
{
NSBezierPath* copy = [self copy];
NSAffineTransform* xfm = RotationTransform(angle, cp);
[copy transformUsingAffineTransform:xfm];
return [copy autorelease];
}
}
使用する:
NSAffineTransform *RotationTransform(const CGFloat angle, const NSPoint cp)
{
// return a transform that will cause a rotation about the point given at the angle given
NSAffineTransform* xfm = [NSAffineTransform transform];
[xfm translateXBy:cp.x yBy:cp.y];
[xfm rotateByRadians:angle];
[xfm translateXBy:-cp.x yBy:-cp.y];
return xfm;
}