了解 CGContextMoveToPoint
我试图了解 CGContextMoveToPoint 函数有效。基本上,我有一个 CGPath,我想以不同的 y 偏移量多次绘制它。为此,我想我应该使用相同的 CGPath 引用并移动整个上下文。绘制路径效果很好。但是,当我使用 CGContextMoveToPoint(context, 0.0, 100.0) 时,路径不会像预期的那样向下移动 100px。添加该行根本不会改变任何内容。
我做错了什么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您指定的坐标(例如在 CGContextAddLineTo 中)是绝对点,而不是与前一个点的相对点。移动整个路径的最佳方法是平移坐标系本身(CGContextTranslateCTM)并在那里绘制路径(并在需要时恢复系统)。
The coordinates you specify, for example in CGContextAddLineTo, is an absolute point not a relative point to the previous point. The best way of moving the entire path, is to translate the coordinate system itself (CGContextTranslateCTM) and draw the path there (and revert the system if needed).