iOS 2D 变换:要使用的库
我必须在 iOS 下执行一些 2D 变换。我知道您可以使用 UIView 的转换属性来应用转换,因此我假设某个地方有一些可以调用的优化代码。不过我也很确定这个东西是在 openGL 之上的,所以...
我可以用什么在 iOS 上(快速)做一些简单的转换?我只需要平移和旋转点。
I have to perform some 2D transforms under iOS. I know that you can use the transform property of UIView to apply transforms so I am assuming that somewhere there is some optimized code that one could call on. However I'm also pretty sure that this stuff is on top of openGL so...
What could I use to do some simple transforms (fastly) on iOS? I just need to translate and rotate points.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
CGAffineTransform
可以构建组合变换矩阵,然后将它们应用到CGPoint
、CGSize
或CGRect
。请参阅文档此处,特别是< em>应用仿射变换Using
CGAffineTransform
one can build combined transformation matrices and then apply them to aCGPoint
,CGSize
orCGRect
. See the documentation here especially Applying Affine Transformations