|
osg3.01 读取ply失败,有ply插件,跟踪了下源码发现在!equal_strings (words[0], "ply")解析ply的文件头ply标签时,比较字符串时出错(words[0]的第四个字符不为'\0'),导致读取过程返回,谁遇到过这样的情况!
另附: ReaderWriterPLY::readNode(const std::string& filename, const osgDB::ReaderWriter::Options* options) const源码有点问题,osg::Node* node = vertexData.readPlyFile(filename.c_str())----这里传的filename没有osg_file_path 的前缀,后来我用了ply文件的绝对路径,但是还是不行,出现了上段的情况。 |
|