- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我已经编写了一个 C++ Obj 文件加载器,但我无法正常工作。问题是在解析一个简单的 obj 文件时,如下所示:
# Blender v2.62 (sub 0) OBJ File: ''
# www.blender.org
mtllib cube.mtl
o Cube
v 1.000000 -1.000000 -1.000000
v 1.000000 -1.000000 1.000000
v -1.000000 -1.000000 1.000000
v -1.000000 -1.000000 -1.000000
v 1.000000 1.000000 -0.999999
v 0.999999 1.000000 1.000001
v -1.000000 1.000000 1.000000
v -1.000000 1.000000 -1.000000
vn 0.000000 0.000000 -1.000000
vn -1.000000 -0.000000 -0.000000
vn -0.000000 -0.000000 1.000000
vn 1.000000 -0.000000 0.000000
vn 1.000000 0.000000 0.000001
vn -0.000000 1.000000 0.000000
vn 0.000000 -1.000000 0.000000
usemtl Material
s off
f 5//1 1//1 4//1
f 5//1 4//1 8//1
f 3//2 7//2 8//2
f 3//2 8//2 4//2
f 2//3 6//3 3//3
f 6//3 7//3 3//3
f 1//4 5//4 2//4
f 5//5 6//5 2//5
f 5//6 8//6 6//6
f 8//6 7//6 6//6
f 1//7 2//7 3//7
f 1//7 3//7 4//7
我无法理解将法线传递给 OpenGL 的正确方法。我总是得到这样的结果:
ObjLoader.h
#include <Eigen/Core>
class ObjLoader
{
public:
ObjLoader();
bool load(const std::string &filename);
void draw();
private:
bool loadFace(const std::string &line,int lineNumber);
std::vector< Eigen::Vector3d> verticesCoord,verticesNormals;
std::vector< Eigen::Vector2d> textureCoords;
std::vector<GLuint> vertexIndices,normalIndices,textureIndices;
Eigen::Vector3d calculateNormal( const Eigen::Vector3d &coord1, const Eigen::Vector3d &coord2, const Eigen::Vector3d &coord3 );
std::string mtlFile;
unsigned int nVerticesPerFace;
};
ObjLoader.cpp
#include <iostream>
#include <fstream>
#include <string>
#include <sstream>
#include <Eigen/Core>
#include "ObjLoader.h"
using namespace std;
using namespace Eigen;
ObjLoader::ObjLoader()
{
}
bool ObjLoader::load(const string &filename)
{
ifstream is(filename.c_str());
if (is.is_open())
{
cerr << "File " + filename + " loaded successfully" << endl;
}
std::vector<Vector3d> temporaryNormals; // a vector to contain the normals as they are read from the obj
string line;
unsigned int lineNumber=0;
while ( getline(is,line) )
{
lineNumber++;
if ( line.empty() || line.at(0)=='#' )
continue;
if ( line.substr(0,6)=="mtllib")
{
this->mtlFile = line.substr(7,line.size()-1);
cerr << "MTLIB support file= " << mtlFile << endl;
}
stringstream stream(line);
char identifier ;
stream >> std::skipws >> identifier;
char specifier;
stream >> specifier;
if (specifier != 't' && specifier != 'n' && specifier!='p' )
{
stream.seekg(0);
specifier=0;
}
switch ( identifier )
{
case 'v': //is a vertex specification
{
switch ( specifier ) // if there is a space then is a simple vertex coordinates
{
case 0:
{
char tmp; stream >> tmp;
Eigen::Vector3d vertex(0.0,0.0,0.0);
stream >> vertex[0] >> vertex[1] >> vertex[2];
this->verticesCoord.push_back(vertex);
}
break;
case 't':
{
Eigen::Vector2d textures(0,0);
stream >> textures[0] >> textures[1];
this->textureCoords.push_back(textures);
}
break;
case 'n':
{
Eigen::Vector3d vertexNormal(0,0,0);
stream >> vertexNormal[0] >> vertexNormal[1] >> vertexNormal[2];
temporaryNormals.push_back(vertexNormal);
}
break;
}
}
break;
case 'f': // is a face specification
{
this->loadFace(line,lineNumber);
}
break;
}
}
// Rearrange the normals
verticesNormals.resize(temporaryNormals.size(),Vector3d(1,1,1));
for(unsigned int i=0;i<vertexIndices.size();i++)
{
GLuint nI = normalIndices.at(i);
GLuint vI = vertexIndices.at(i);
if(nI!=vI)
{
this->verticesNormals.at(vI) = temporaryNormals.at(nI);
std::cerr<< "Normal index doesn't match vertex index: " << vertexIndices[i] << " " << normalIndices[i] << std::endl;
}
else
{
this->verticesNormals.at(vI) = temporaryNormals.at(vI);
}
cerr << "Vertices=" << this->verticesCoord.size() << endl;
cerr << "Normals=" << this->verticesNormals.size() << endl;
cerr << "Textures=" << this->textureCoords.size() << endl;
cerr << "NVertices per face= " << this->nVerticesPerFace << endl;
cerr << "Faces= " << this->vertexIndices.size()/nVerticesPerFace << endl;
return 0;
}
}
bool BothAreSpaces(char lhs, char rhs)
{
return (lhs == rhs) && (lhs == ' ');
}
bool ObjLoader::loadFace(const string &_line, int lineNumber)
{
std::string line = _line;
std::string::iterator new_end = std::unique(line.begin(), line.end(), BothAreSpaces);
line.erase(new_end, line.end());
stringstream stream(line),countVerticesStream(line);
string val;
stream >> val;
if (val!="f")
{
string lineString= static_cast<ostringstream*>( &(ostringstream() << lineNumber) )->str();
throw std::logic_error("Error loading face at line " + lineString);
}
// Count the number of vertices per face by counting the /
int nVertices = 0;
while ( countVerticesStream.good() )
{
if (countVerticesStream.get()==' ' && countVerticesStream.good())
nVertices++;
}
if ( nVerticesPerFace !=0 && nVerticesPerFace != nVertices )
{
string lineString= static_cast<ostringstream*>( &(ostringstream() << lineNumber) )->str();
throw std::logic_error("Can't support non uniform faces definitions. You must use the same number of vertices for every faces. Check line "+lineString);
}
this->nVerticesPerFace = nVertices;
GLuint indexPosition = 0, indexTexture = 0, indexNormal = 0;
// Compute the normal
Vector3d faceVertices[nVerticesPerFace];
for ( unsigned int iFace = 0; iFace < nVerticesPerFace; iFace++ )
{
stream >> indexPosition;
faceVertices[iFace] = verticesCoord.at(indexPosition-1);
if( '/' == stream.peek() )
{
stream.ignore();
if( '/' != stream.peek() )
{
stream >> indexTexture;
}
if( '/' == stream.peek() )
{
stream.ignore();
// Optional vertex normal
stream >> indexNormal;
}
}
this->vertexIndices.push_back(indexPosition-1); // that's because Obj format starts counting from 1
this->textureIndices.push_back(indexTexture-1); // that's because Obj format starts counting from 1
this->normalIndices.push_back(indexNormal-1); // that's because Obj format starts counting from 1
}
}
void ObjLoader::draw()
{
double *pVerticesCoords = &this->verticesCoord.at(0)[0];
glEnableClientState(GL_VERTEX_ARRAY);
glVertexPointer(3,GL_DOUBLE, 0,pVerticesCoords);
glDrawArrays(GL_POINTS, 0, this->verticesCoord.size());
glDisableClientState(GL_VERTEX_ARRAY);
GLint coordsPerVertex=3;
GLint stride=0; // Our coords are tightly packed into their arrays so we set this to 0
//double *pVerticesCoords = &this->verticesCoord.at(0)[0];
double *pNormalCoords = &this->verticesNormals.at(0)[0];
glEnableClientState(GL_NORMAL_ARRAY);
glEnableClientState(GL_VERTEX_ARRAY);
glNormalPointer(GL_DOUBLE, 0, pNormalCoords); // Normal pointer to normal array
glVertexPointer(coordsPerVertex,GL_DOUBLE, stride,pVerticesCoords);
switch ( nVerticesPerFace )
{
case 3:
glDrawElements(GL_TRIANGLES, vertexIndices.size(), GL_UNSIGNED_INT, this->vertexIndices.data());
break;
case 4:
glDrawElements(GL_QUADS, vertexIndices.size(), GL_UNSIGNED_INT, this->vertexIndices.data());
break;
default:
glDrawElements(GL_POLYGON, vertexIndices.size(), GL_UNSIGNED_INT, this->vertexIndices.data());
}
glDisableClientState(GL_VERTEX_ARRAY);
glDisableClientState(GL_NORMAL_ARRAY);
}
我应该如何重新组织法线以使它们反射(reflect)相同的顶点顺序?
最佳答案
你的问题出在数据结构上。至少在加载 OBJ 时你需要将你的脸加载到类似的东西中:
struct Vertex
{
unsigned int vertex;
unsigned int normal;
unsigned int texturecoord;
};
struct Face
{
// not dynamic, but you get the idea.
Vertex vertexes[N];
};
然后如果你想要一个匹配顶点的法线数组(可能还有纹理坐标),你需要创建一个匹配的新数组。 OBJ 格式针对存储而非渲染进行了优化。
这个两步过程的额外好处是,您可以通过将每个非三角形夹板成三角形来消除对同质面的限制。
关于c++ - 使用 Wavefront Obj 了解法线指标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16296301/
我开始在 Ethereum blockchain 上了解如何开发智能合约以及如何写 web-script用于与智能合约交互(购买、销售、统计......)我得出了该怎么做的结论。我想知道我是否正确理解
我正在 UIView 中使用 CATransform3DMakeRotation,并且我正在尝试进行 45º,变换就像向后放置一样: 这是我拥有的“代码”,但显然没有这样做。 CATransform3
我目前正在测试 WebRTC 的功能,但我有一些脑逻辑问题。 WebRTC 究竟是什么? 我只读了“STUN”、“P2P”和其他...但是在技术方面什么是正确的 WebRTC(见下一个) 我需要什么
我在看 DelayedInit在 Scala in Depth ... 注释是我对代码的理解。 下面的 trait 接受一个非严格计算的参数(由于 => ),并返回 Unit .它的行为类似于构造函数
谁能给我指出一个用图片和简单的代码片段解释 WCF 的资源。我厌倦了谷歌搜索并在所有搜索结果中找到相同的“ABC”文章。 最佳答案 WCF 是一项非常复杂的技术,在我看来,它的文档记录非常少。启动和运
我期待以下 GetArgs.hs打印出传递给它的参数。 import System.Environment main = do args main 3 4 3 :39:1: Coul
private int vbo; private int ibo; vbo = glGenBuffers(); ibo = glGenBuffers(); glBindBuffer(GL_ARRAY_
我正在尝试一个 for 循环。我添加了一个 if 语句以在循环达到 30 时停止循环。 我见过i <= 10将运行 11 次,因为循环在达到 10 次时仍会运行。 如果有设置 i 的 if 语句,为什
我正在尝试了解 WSGI 的功能并需要一些帮助。 到目前为止,我知道它是一种服务器和应用程序之间的中间件,用于将不同的应用程序框架(位于服务器端)与应用程序连接,前提是相关框架具有 WSGI 适配器。
我是 Javascript 的新手,我正在尝试绕过 while 循环。我了解它们的目的,我想我了解它们的工作原理,但我在使用它们时遇到了麻烦。 我希望 while 值自身重复,直到两个随机数相互匹配。
我刚刚偶然发现Fabric并且文档并没有真正说明它是如何工作的。 我有根据的猜测是您需要在客户端和服务器端都安装它。 Python 代码存储在客户端,并在命令运行时通过 Fabric 的有线协议(pr
我想了解 ConditionalWeakTable .和有什么区别 class ClassA { static readonly ConditionalWeakTable OtherClass
关闭。这个问题需要更多focused .它目前不接受答案。 想改善这个问题吗?更新问题,使其仅关注一个问题 editing this post . 5年前关闭。 Improve this questi
我还没有成功找到任何可以引导我理解 UIPickerView 和 UIPickerView 模型的好例子。有什么建议吗? 最佳答案 为什么不使用默认的 Apple 文档示例?这是来自苹果文档的名为 U
我在看foldM为了获得关于如何使用它的直觉。 foldM :: Monad m => (a -> b -> m a) -> a -> [b] -> m a 在这个简单的例子中,我只返回 [Just
答案What are _mm_prefetch() locality hints?详细说明提示的含义。 我的问题是:我想要哪一个? 我正在处理一个被重复调用数十亿次的函数,其中包含一些 int 参数。
我一直在读这个article了解 gcroot 模板。我明白 gcroot provides handles into the garbage collected heap 然后 the handle
提供了一个用例: 流处理架构;事件进入 Kafka,然后由带有 MongoDB 接收器的作业进行处理。 数据库名称:myWebsite集合:用户 并且作业接收 users 集合中的 user 记录。
你好 我想更详细地了解 NFS 文件系统。我偶然发现了《NFS 图解》这本书,不幸的是它只能作为谷歌图书提供,所以有些页面丢失了。有人可能有另一个很好的资源,这将是在较低级别上了解 NFS 的良好开始
我无法理解这个问题,哪个更随机? rand() 或: rand() * rand() 我发现这是一个真正的脑筋急转弯,你能帮我吗? 编辑: 凭直觉,我知道数学答案是它们同样随机,但我忍不住认为,如果您
我是一名优秀的程序员,十分优秀!