• 详解一个maya2011的obj


    Cube.obj

    # This file uses centimeters as units for non-parametric coordinates.
    
    mtllib cube.mtl
    g default
    v -0.500000 -0.500000 0.500000
    v 0.500000 -0.500000 0.500000
    v -0.500000 0.500000 0.500000
    v 0.500000 0.500000 0.500000
    v -0.500000 0.500000 -0.500000
    v 0.500000 0.500000 -0.500000
    v -0.500000 -0.500000 -0.500000
    v 0.500000 -0.500000 -0.500000
    vt 0.001992 0.001992
    vt 0.998008 0.001992
    vt 0.001992 0.998008
    vt 0.998008 0.998008
    vt 0.001992 0.001992
    vt 0.998008 0.001992
    vt 0.001992 0.998008
    vt 0.998008 0.998008
    vt 0.001992 0.001992
    vt 0.998008 0.001992
    vt 0.001992 0.998008
    vt 0.998008 0.998008
    vt 0.001992 0.001992
    vt 0.998008 0.001992
    vt 0.001992 0.998008
    vt 0.998008 0.998008
    vt 0.001992 0.001992
    vt 0.998008 0.001992
    vt 0.001992 0.998008
    vt 0.998008 0.998008
    vt 0.998008 0.998008
    vt 0.001992 0.998008
    vt 0.998008 0.001992
    vt 0.001992 0.001992
    vn 0.000000 0.000000 1.000000
    vn 0.000000 0.000000 1.000000
    vn 0.000000 0.000000 1.000000
    vn 0.000000 0.000000 1.000000
    vn 0.000000 1.000000 0.000000
    vn 0.000000 1.000000 0.000000
    vn 0.000000 1.000000 0.000000
    vn 0.000000 1.000000 0.000000
    vn 0.000000 0.000000 -1.000000
    vn 0.000000 0.000000 -1.000000
    vn 0.000000 0.000000 -1.000000
    vn 0.000000 0.000000 -1.000000
    vn 0.000000 -1.000000 0.000000
    vn 0.000000 -1.000000 0.000000
    vn 0.000000 -1.000000 0.000000
    vn 0.000000 -1.000000 0.000000
    vn 1.000000 0.000000 0.000000
    vn 1.000000 0.000000 0.000000
    vn 1.000000 0.000000 0.000000
    vn 1.000000 0.000000 0.000000
    vn -1.000000 0.000000 0.000000
    vn -1.000000 0.000000 0.000000
    vn -1.000000 0.000000 0.000000
    vn -1.000000 0.000000 0.000000
    s 1
    g pCube1
    usemtl file1SG
    f 1/1/1 2/2/2 3/3/3
    f 3/3/3 2/2/2 4/4/4
    s 2
    f 3/13/5 4/14/6 5/15/7
    f 5/15/7 4/14/6 6/16/8
    s 3
    f 5/21/9 6/22/10 7/23/11
    f 7/23/11 6/22/10 8/24/12
    s 4
    f 7/17/13 8/18/14 1/19/15
    f 1/19/15 8/18/14 2/20/16
    s 5
    f 2/5/17 8/6/18 4/7/19
    f 4/7/19 8/6/18 6/8/20
    s 6
    f 7/9/21 1/10/22 5/11/23
    f 5/11/23 1/10/22 3/12/24


    This particular .OBJ model file represents a 3D cube. It has 8 vertices, 24 texture coordinates and normal vectors, and 6 sides made up of 12 faces in total. When examining the file you can ignore every line unless it starts with a "V", "VT", "VN", or "F". The extra information in the file will not be needed for converting .obj to our file format. Lets look at what each of the important lines means:

    
    

    1. The "V" lines are for the vertices. The cube is made up of 8 vertices for the eight corners of the cube. Each is listed in X, Y, Z float format.

    
    

    2. The "VT" lines are for the texture coordinates. The cube is has 24 texture coordinates and most of them are duplicated since it records them for every vertex in every triangle in the cube model. They are listed in TU, TV float format.

    
    

    3. The "VN" lines are for the normal vectors. The cube is has 24 normal vectors and most of them are duplicated again since it records them for every vertex in every triangle in the cube model. They are listed in NX, NY, NZ float format.

    
    

    4. The "F" lines are for each triangle (face) in the cube model. The values listed are indexes into the vertices, texture coordinates, and normal vectors. The format of each face is:

    
    
    f Vertex1/Texture1/Normal1 Vertex2/Texture2/Normal2 Vertex3/Texture3/Normal3
    
    
    

    So a line that says "f 3/13/5 4/14/6 5/15/7" then translates to "Vertex3/Texture13/Normal5 Vertex4/Texture14/Normal6 Vertex5/Texture15/Normal7".

    
    

    The order the data is listed in the .obj file is very important. For example the first vertex in the file corresponds to Vertex1 in the face list. This is the same for texture coordinates and normals as well.

    
    

    Looking at the face lines in the .obj file notice that the three index groups per line make an individual triangle. And in the case of this cube model the 12 total faces make up the 6 sides of the cube that has 2 triangles per side.

    最后啰嗦一句,记得maya里面是右手坐标系哦

     

    1. Invert the Z coordinate vertices. In the code you will see it do this: vertices[vertexIndex].z = vertices[vertexIndex].z * -1.0f;

     

    2. Invert the TV texture coordinate. In the code you will see it do this: texcoords[texcoordIndex].y = 1.0f - texcoords[texcoordIndex].y;

     

    3. Invert the NZ normal vertex. In the code you will see it do this: normals[normalIndex].z = normals[normalIndex].z * -1.0f;

     

    4. Convert the drawing order from counter clockwise to clockwise. In the code I simply read in the indexes in reverse order instead of re-organizing it after the fact:

     

    fin >> faces[faceIndex].vIndex3 >> input2 >> faces[faceIndex].tIndex3 >> input2 >> faces[faceIndex].nIndex3; 
    fin >> faces[faceIndex].vIndex2 >> input2 >> faces[faceIndex].tIndex2 >> input2 >> faces[faceIndex].nIndex2;
    fin >> faces[faceIndex].vIndex1 >> input2 >> faces[faceIndex].tIndex1 >> input2 >> faces[faceIndex].nIndex1;
    

     

    With those four steps complete the model data will be ready for DirectX 11 to render correctly.

     

    
    
  • 相关阅读:
    本地代码库关联Github
    常用正则表达式
    IDEA开启并配置services窗口
    数据结构总结
    IDEA导入项目后文件出现时钟的原因及解决方案
    win7硬盘安装过程图解(需要编辑)
    How to Create a Automated Task that Runs at a Set Time in Windows 7
    【转】Code Review(代码复查)
    (收藏)C#开源资源大汇总
    Windows Workflow Foundation:向跟踪服务(TrackingService)传递数据
  • 原文地址:https://www.cnblogs.com/RenderLife/p/2704278.html
Copyright © 2020-2023  润新知