CATransform3DTranslate 和 CATransform3DScale 之间的区别

发布于 2024-10-14 00:15:29 字数 30 浏览 1 评论 0原文

很天真的问题。我不太明白这里的“翻译”这个词。

Pretty naive question. I don't really understand the term 'translate' here.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

一绘本一梦想 2024-10-21 00:15:29

虽然两者都是修改 CATransform3D 的函数,但它们执行的修改是不同的。 CATransform3DTranslate 移动通过在 x、y、z 空间中移动来变换坐标空间。如果您将 CATransform3DTranslate 应用于对象的变换(例如 CALayer),它将更改在屏幕中的位置。 CATransform3DScale 将调整空间大小,使变换后的对象变大或变小。如果将 CATransform3DScale 应用于对象的变换,则会改变大小。

While both are functions that modify a CATransform3D, the modification they perform is different. CATransform3DTranslate moves transforms the coordinate space by moving it in the x,y,z space. If you apply a CATransform3DTranslate to an object's transform (e.g a CALayer) it would change position in the screen. CATransform3DScale will resize the space, making transformed objects bigger and smaller. If you apply a CATransform3DScale to an object's transform is would change size.

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