iOS 2D 变换:要使用的库

发布于 2024-11-16 11:58:26 字数 153 浏览 3 评论 0原文

我必须在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

樱娆 2024-11-23 11:58:26

使用CGAffineTransform可以构建组合变换矩阵,然后将它们应用到CGPointCGSizeCGRect。请参阅文档此处,特别是< em>应用仿射变换

Using CGAffineTransform one can build combined transformation matrices and then apply them to a CGPoint, CGSize or CGRect. See the documentation here especially Applying Affine Transformations

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文