微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

c#-Unity3d中的Matrix.RotateAt

我一直在尝试围绕Unity3d中的指定中心创建旋转矩阵,但是Matrix4x4类没有提供任何允许我这样做的函数,即使C#确实提供了一个称为的函数

public void RotateAt(double angle,double centerX,double centerY);

哪个位于System.Windows.Media命名空间中,但在Unity3d中不可访问,有什么方法可以在Unity3d中创建相同的旋转矩阵?谢谢.

解决方法:

可以按照以下步骤创建围绕点的旋转矩阵:

>将该矩阵平移到要使其旋转的点.
>旋转矩阵.
>将矩阵转换回原点.

这大致翻译为:

// Set the following variables according to your setup
Vector3 centerOfRotation = ...;
float angleOfRotation = ...;
Vector3 rotationAxis = ...;

// This should calculate the resulting matrix, as described in the answer
Matrix4x4 translationToCenterPoint = Matrix4x4.Translate(centerOfRotation);
Matrix4x4 rotation = Matrix4x4.Rotate(Quaternion.AngleAxis(angleOfRotation, rotationAxis));
Matrix4x4 translationBackToOrigin = Matrix4x4.Translate(-centerOfRotation);

Matrix4x4 resultMatrix = translationToCenterPoint * rotation * translationBackToOrigin;

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐