I'm animating some stuff using CAAnimation, & it involves making a fairly complex path using CGPathAddCurveToPoint, maybe 10 - 15 of these per path. Is there a way, instead of recalculating every curve, I could just rotate the whole path once it's built? I don't want to rotate the whole graphics context, as it's just the animation path which needs to change.
(I've tried putting a CGAffineTransformMakeRotation into every curve element, but that just has weird effects, it's like it's not rotating the path as a whole)
Many thanks for any help!