我做对了吗?
显然不是原因,否则我不会在这里发布问题,但我正在尝试围绕另一个模型对模型进行四元数旋转。
假设我有一个具有 vector3 位置和浮动旋转角度的盒子模型。我还有一个平截头体模型,它指向盒子模型,它的位置可以说是盒子模型的 50 个单位。平截头体还有一个vector3 位置和一个四元数旋转。
在场景 1 中,长方体和平截头体是“未旋转的”。这一切都很好。在场景 2 中,我只旋转盒子,并且我希望截头锥体随之旋转(有点像追逐相机),截头锥体始终直接指向盒子,并且与盒子的距离与未旋转的距离相同。显然,如果我只是通过使用 Matrix.CreateRotationY() 来旋转模型和截头体,对于盒子和截头体,截头体会稍微偏移到一边。
所以我认为围绕盒子的平截头体的四元数旋转会是最好的?为此,我尝试了以下方法,但没有运气。它在屏幕上绘制我的模型,但它也在屏幕上绘制了一个看起来像一个巨大盒子的东西,无论我将相机移动多远,这个盒子总是挡在路上
为了测试的目的,我有 3 个盒子和它们的 3 个相关的平截头体在我的 Game1 类中,我用位置和旋转初始化了 box[0]
boxObject[0].Position = new Vector3(10, 10, 10);
boxObject[1].Position = new Vector3(10, 10, 10);
boxObject[2].Position = new Vector3(10, 10, 10);
boxObject[0].Rotation = 0.0f;
boxObject[1].Rotation = 45.0f;
boxObject[2].Rotation = -45.0f;
因此,所有 3 个框都绘制在相同位置但角度不同。然后做平截头体,我开始他们的立场:
float f = 50.0f;
frustumObject[0].Position = new Vector3(boxObject[0].Position.X,
boxObject[0].Position.Y, boxObject[0].Position.Z + f);
frustumObject[1].Position = new Vector3(boxObject[1].Position.X,
boxObject[1].Position.Y, boxObject[1].Position.Z + f);
frustumObject[2].Position = new Vector3(boxObject[2].Position.X,
boxObject[2].Position.Y, boxObject[2].Position.Z + f);
然后尝试围绕它们关联的盒子模型旋转:
frustumObject[0].ModelRotation = new Quaternion(boxObject[0].Position.X,
boxObject[0].Position.Y, boxObject[0].Position.Z + f, 0);
frustumObject[0].ModelRotation = new Quaternion(boxObject[0].Position.X,
boxObject[0].Position.Y, boxObject[0].Position.Z + f, 45);
frustumObject[0].ModelRotation = new Quaternion(boxObject[0].Position.X,
boxObject[0].Position.Y, boxObject[0].Position.Z + f, -45);
最后,为了绘制模型,我在我的 GameModel 类中绘制()它们,该类也有:
public Model CameraModel { get; set; }
public Vector3 Position { get; set; }
public float Rotation { get; set; }
public Quaternion ModelRotation { get; set; }
public void Draw(Matrix view, Matrix projection)
{
transforms = new Matrix[CameraModel.Bones.Count];
CameraModel.CopyAbsoluteBoneTransformsTo(transforms);
// Draw the model
foreach (ModelMesh myMesh in CameraModel.Meshes)
{
foreach (BasicEffect myEffect in myMesh.Effects)
{
// IS THIS CORRECT?????
myEffect.World = transforms[myMesh.ParentBone.Index] *
Matrix.CreateRotationY(Rotation) * Matrix.CreateFromQuaternion(ModelRotation) * Matrix.CreateTranslation(Position);
myEffect.View = view;
myEffect.Projection = projection;
myEffect.EnableDefaultLighting();
myEffect.SpecularColor = new Vector3(0.25f);
myEffect.SpecularPower = 16;
}
myMesh.Draw();
}
}
谁能发现我哪里出错了?是因为我在 Draw() 中进行了 2 种类型的旋转吗?
myEffect.World = transforms[myMesh.ParentBone.Index] * Matrix.CreateRotationY(Rotation) * Matrix.CreateFromQuaternion(ModelRotation) * Matrix.CreateTranslation(Position);