Bir*_*der 1 c++ opengl 3d mesh
我正在尝试显示从.obj文件加载的对象.我用这个函数来读取.obj:
bool loadOBJ(
const char * path,
std::vector<glm::vec3> & vertices,
std::vector<glm::vec3> & vertexIndices
){
printf("Loading OBJ file %s...\n", path);
FILE * file = fopen(path, "r");
if( file == NULL ){
printf("Impossible to open the file ! Are you in the right path ? \n");
getchar();
return false;
}
while( 1 ){
char lineHeader[128];
// read the first word of the line
int res = fscanf(file, "%s", lineHeader);
if (res == EOF)
break; // EOF = End Of File. Quit the loop.
// else : parse lineHeader
if ( strcmp( lineHeader, "v" ) == 0 ){
glm::vec3 vertex;
fscanf(file, "%f %f %f\n", &vertex.x, &vertex.y, &vertex.z );
vertices.push_back(vertex);
}else if ( strcmp( lineHeader, "f" ) == 0 ){
glm::vec3 vertexIndex;
fscanf(file, "%f %f %f\n", &vertexIndex.x, &vertexIndex.y, &vertexIndex.z );
vertexIndices.push_back(vertexIndex);
}else{
// Probably a comment, eat up the rest of the line
char stupidBuffer[1000];
fgets(stupidBuffer, 1000, file);
}
}
return true;
}
Run Code Online (Sandbox Code Playgroud)
然后我在init函数中调用此函数.加载网格后,我通过循环遍历顶点来显示它:
for (unsigned int i = 0; i < meshVertices.size(); i++)
{
glBegin(GL_TRIANGLES);
glVertex3f(meshVertices[faceIndices[i].x-1].x, meshVertices[faceIndices[i].x-1].y, meshVertices[faceIndices[i].x-1].z);
glVertex3f(meshVertices[faceIndices[i].y-1].x, meshVertices[faceIndices[i].y-1].y, meshVertices[faceIndices[i].y-1].z);
glVertex3f(meshVertices[faceIndices[i].z-1].x, meshVertices[faceIndices[i].z-1].y, meshVertices[faceIndices[i].z-1].z);
glEnd();
}
Run Code Online (Sandbox Code Playgroud)
但是,当程序运行时,对象的远端根本不加载,并且缺少随机三角形.像这样:

您不希望循环顶点的大小,而是循环面的大小.
你的循环应该读 for (unsigned int i = 0; i < faceIndices.size(); i++)
你在循环变量faceIndices[i],我想你想绘制所有的三角形,而不是所有的点(顶点)!
旁注:我教你这门课吗?:D那段代码看起来很熟悉......