自分で構築したパーサーを使用して解析する OBJ Wavefront モデルをレンダリングすると、レンダリング時に次の結果が得られます。
存在するギャップは正常ですか、それともレンダリング コードの欠陥によるものですか?
レンダリング コードは次のとおりです。
glPushMatrix();
glColor3f(1.0f, 1.0f, 1.0f);
glScaled(scale, scale, scale);
glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);
for (int i = 0; i < vertices_indexes.size()-3; i+=3) {
glBegin(GL_TRIANGLE_FAN);
if (is_normals) glNormal3f(normals.at(normals_indexes[i]).x, normals.at(normals_indexes[i]).y, normals.at(normals_indexes[i]).z);
glVertex3f(vertices.at(vertices_indexes[i]).x, vertices.at(vertices_indexes[i]).y, vertices.at(vertices_indexes[i]).z);
if (is_normals) glNormal3f(normals.at(normals_indexes[i+1]).x, normals.at(normals_indexes[i+1]).y, normals.at(normals_indexes[i+1]).z);
glVertex3f(vertices.at(vertices_indexes[i + 1]).x, vertices.at(vertices_indexes[i + 1]).y, vertices.at(vertices_indexes[i + 1]).z);
if (is_normals) glNormal3f(normals.at(normals_indexes[i+2]).x, normals.at(normals_indexes[i+2]).y, normals.at(normals_indexes[i+2]).z);
glVertex3f(vertices.at(vertices_indexes[i + 2]).x, vertices.at(vertices_indexes[i + 2]).y, vertices.at(vertices_indexes[i + 2]).z);
glEnd();
}
glPopMatrix();