如何沿曲线绘制图像

时间:2013-03-10 00:15:16

标签: ios core-graphics

我画了一条曲线:

CGContextRef context = UIGraphicsGetCurrentContext();
CGContextMoveToPoint(context, firstPoint.x, firstPoint.y);
CGContextAddCurveToPoint(context, cpx1, cpy1, cpx2, cpy2, finalPoint.x, finalPoint.y);

现在我想沿着曲线的路径多次绘制图像。

有可能吗?如果是这样,怎么样?

0 个答案:

没有答案