需要在 o3d 中缩放方面的帮助
我一直很难找到很多关于 o3d 的文档(这并不奇怪)。 有谁知道如何在o3d中缩放我的x?
I have been having trouble find much documentation on o3d (not too surprisingly). Does anyone know how to scale my x in o3d?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 o3djs.math 模块中有一个函数:
其中“v”是一个向量。 因此,如果您有当前的变换矩阵,您可以执行以下操作:
“newMatrix”会将立方体的 X 维度缩放 0.6,然后应用“currMatrix”。
In the o3djs.math module there is a function:
where "v" is a vector. So if you have a current transformation matrix you could do:
The "newMatrix" would scale the X dimension of the cube by 0.6 and then apply "currMatrix" after that.