翻译后,形状不会围绕原点旋转

时间:2018-11-12 18:15:12

标签: c# opengl graphics 3d

我正在开发OpenGL的类似物。所以我有模型,视图和投影矩阵。

缩放和旋转工作完美而无需平移。但是,当我将平移应用于对象并尝试再次旋转时,它会绕世界原点旋转。

我知道转换操作应该排在下一个顺序:缩放->旋转->翻译。但是我不明白如何仅使用一个矩阵(模型)来实现。

那么,我该如何以正确的方式做到这一点?我应该使用3个插入的矩阵吗?

我在矩阵上的工作

        for (int i = 0; i < vertices.Count; ++i)
        {
            float[,] vertexCoords = { { vertices[i].SX }, { vertices[i].SY }, { vertices[i].SZ }, { vertices[i].SW } };

            var modelViewMatrix = MatrixMultiplier.MultiplyMatrix(camera.ViewMatrix, shape.ModelMatrix);
            var eyeCoordinates = MatrixMultiplier.MultiplyMatrix(modelViewMatrix, vertexCoords);
            var clipCoordinates = MatrixMultiplier.MultiplyMatrix(camera.ProjectionMatrix, eyeCoordinates);


            var ndc = new float[,] {
                { clipCoordinates[0, 0] / clipCoordinates[3, 0] },
                { clipCoordinates[1, 0] / clipCoordinates[3, 0] },
                { clipCoordinates[2, 0] / clipCoordinates[3, 0] },
                { clipCoordinates[3, 0]}
            };

            var windowCoordinates = new float[,] { 
                { 640 / 2 * ndc[0, 0] + (640 / 2) },
                { 360 / 2 * ndc[1, 0] + (360 / 2) },
                { (50 - (-50)) / 2 * ndc[2, 0] + (50 + (-50)) / 2 },
                { ndc[3, 0]}
            };

            SetNewCoordinatesToPoint(vertices[i], windowCoordinates);             
        }

旋转算法示例:

private void RotateZ(MCommonPrimitive shape, double angle)
    {
        double rads = angle * Math.PI / 180.0;

        float[,] rotateZ = {
            { (float)Math.Cos(rads), -(float)Math.Sin(rads), 0, 0 },
            { (float)Math.Sin(rads), (float)Math.Cos(rads), 0, 0 },
            { 0, 0, 1, 0 },
            { 0, 0, 0, 1 }
        };

        shape.ModelMatrix = MatrixMultiplier.MultiplyMatrix(rotateZ, shape.ModelMatrix);
    }

MatrixMultiplier:

public static class MatrixMultiplier
{
    public static float[,] MultiplyMatrix(float[,] a, float[,] b)
    {
        float[,] c = null;

        if (a.GetLength(1) == b.GetLength(0))
        {
            c = new float[a.GetLength(0), b.GetLength(1)];
            for (int i = 0; i < c.GetLength(0); i++)
            {
                for (int j = 0; j < c.GetLength(1); j++)
                {
                    c[i, j] = 0;
                    for (int k = 0; k < a.GetLength(1); k++) // OR k<b.GetLength(0)
                        c[i, j] = c[i, j] + a[i, k] * b[k, j];
                }
            }
        }
        else
        {
            Console.WriteLine("\n Number of columns in First Matrix should be equal to Number of rows in Second Matrix.");
            Console.WriteLine("\n Please re-enter correct dimensions.");
            throw new ArithmeticException("Number of columns in First Matrix should be equal to Number of rows in Second Matrix");
        }

        return c;
    }
}

2 个答案:

答案 0 :(得分:2)

  

但是当我将平移应用于对象并尝试再次旋转时,它会围绕世界原点旋转。

是的,这就是它的工作原理。 您必须先旋转对象,然后将其平移到所需位置。几何变换不是可交换的,即操作顺序很重要。

答案 1 :(得分:0)

根据Nico Schertler的原始answer,这全都取决于矩阵的乘法顺序。因此,例如,如果我将使用此代码

shape.ModelMatrix = MatrixMultiplier.MultiplyMatrix(rotateZ, shape.ModelMatrix);

根据我的RotateZ方法,形状将围绕世界原点旋转。而且,如果我将代码更改为此:

shape.ModelMatrix = MatrixMultiplier.MultiplyMatrix(shape.ModelMatrix, rotateZ);

形状将绕其中心旋转。