3

在 C#.net 中,我有一个具有动态直径和长度的网格圆柱体,并试图将纹理映射到它。我花了一天的大部分时间试图找出如何做到这一点,但没有成功在谷歌上找到任何信息。

圆柱体纹理具有 jpg 的顶部区域,侧面具有 jpg 的其余部分。我需要将 jpgs 图像边缘定位在圆柱体的顶部边缘。例如。使用一张图像,顶部为红色,侧面为绿色。

谁能帮我将 VertexBuffer 点映射到纹理?

C#.Net 2008 DirectX 9(非托管)

我在下面发布了我的工作解决方案

4

2 回答 2

1

尽管本教程是用 VB 编写的,但它清楚地解释了该过程。

计算纹理坐标可能是相当多的工作;这就是为什么这通常是由 3D 建模软件完成的,因此您可以轻松地,更重要的是,可以直观地调整映射。

如果您有任何问题,请告诉我。

编辑

要将纹理坐标添加到 DirecxtX 生成的圆柱体,请参阅此

于 2011-04-07T06:16:56.147 回答
1

好的,我终于想通了。我以前有一些代码可以工作,但不完全是我想要的 http://channel9.msdn.com/coding4fun/articles/Ask-the-ZMan-Applying-Textures-Part-3

无论如何,我只是对它做了一些修改。

供参考和来自谷歌的人,给你。

public static float ComputeBoundingSphere(Mesh mesh, out Microsoft.DirectX.Vector3 center)
    {
        // Lock the vertex buffer
        Microsoft.DirectX.GraphicsStream data = null;
        try
        {
            data = mesh.LockVertexBuffer(LockFlags.ReadOnly);
            // Now compute the bounding sphere
            return Geometry.ComputeBoundingSphere(data, mesh.NumberVertices, 
                mesh.VertexFormat, out center);
        }
        finally
        {
            // Make sure to unlock the vertex buffer
            if (data != null)
                mesh.UnlockVertexBuffer();
        }
    }

    private static Mesh SetSphericalTexture(Mesh mesh)
    {
        Microsoft.DirectX.Vector3 vertexRay;
        Microsoft.DirectX.Vector3 meshCenter;
        double phi;
        float u;


        Microsoft.DirectX.Vector3 north = new Microsoft.DirectX.Vector3(0f, 0f, 1f);
        Microsoft.DirectX.Vector3 equator = new Microsoft.DirectX.Vector3(0f, 1f, 0f);
        Microsoft.DirectX.Vector3 northEquatorCross = Microsoft.DirectX.Vector3.Cross(north, equator);

        ComputeBoundingSphere(mesh, out meshCenter);

        using (VertexBuffer vb = mesh.VertexBuffer)
        {
            CustomVertex.PositionNormalTextured[] verts = (CustomVertex.PositionNormalTextured[])vb.Lock(0, typeof(CustomVertex.PositionNormalTextured), LockFlags.None, mesh.NumberVertices);
            try
            {
                for (int i = 0; i < verts.Length; i++)
                {
                    //For each vertex take a ray from the centre of the mesh to the vertex and normalize so the dot products work.
                    vertexRay = Microsoft.DirectX.Vector3.Normalize(verts[i].Position - meshCenter);

                    phi = Math.Acos((double)vertexRay.Z);
                    if (vertexRay.Z > -0.9)
                    {
                        verts[i].Tv = 0.121f; //percentage of the image being the top side
                    }
                    else
                        verts[i].Tv = (float)(phi / Math.PI);

                    if (vertexRay.Z == 1.0f || vertexRay.Z == -1.0f)
                    {
                        verts[i].Tu = 0.5f;
                    }
                    else
                    {
                        u = (float)(Math.Acos(Math.Max(Math.Min((double)vertexRay.Y / Math.Sin(phi), 1.0), -1.0)) / (2.0 * Math.PI));
                        //Since the cross product is just giving us (1,0,0) i.e. the xaxis 
                        //and the dot product was giving us a +ve or -ve angle, we can just compare the x value with 0
                        verts[i].Tu = (vertexRay.X > 0f) ? u : 1 - u;
                    }
                }
            }
            finally
            {
                vb.Unlock();
            }
        }
        return mesh;
    }
于 2011-04-08T01:48:07.300 回答