如何在纹理的特定部分应用变换
假设我有一个矩形
现在我希望应用它的转换,例如在 z 方向上平移和缩放以及纹理的右下角。
我该怎么做。请帮我。
Lets say i have a rectangle
Now i wish to apply it transformations such as translating in the z direction and scalling as well on the lower-right corner of the texture.
How can i do that. Please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这就是我们所说的卷页效果。
android 不提供内置支持。
尽管您可以通过遵循任何教程来实现您自己的。搜索卷曲页面。
此处有一个很好的链接
this is what we call curl page effect.
no build-in support is provided by android .
although you can implement your own by following any tutorials . search for curl page .
one good link here
一个矩形帽子正好有 4 个顶点。变换围绕顶点移动。您尝试实现的效果是所谓的“页面卷曲”,并且不适用于矩形。为此,您需要一个网格,以便有足够的顶点来卷曲它。
A rectangle hat exactly 4 vertices. A transformation moves around vertices. The effect you try to implement is a so called "page curl" and doesn't work on a rectangle. You need a grid for this, so that you have enough vertices to curl it.