我是靠谱客的博主 兴奋衬衫,最近开发中收集的这篇文章主要介绍【OSG】读取osgb倾斜数据,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

string data_dir = osgb_dir;
	//std::string ext = osgDB::getLowerCaseFileExtension(data_dir);
	osgDB::ReaderWriter::Options* options=NULL;
	std::string fileName = osgDB::findDataFile(osgb_dir, options);
	if (fileName.empty()) {
		OSG_INFO << "Reading file " << fileName <<"not found"<< std::endl;
		return;
	}
	osg::Group* g = new osg::Group;
	std::string dir = osgDB::getFilePath(fileName);
	std::string dataPath = dir + "\Data\";
	osgDB::DirectoryContents dirNames = osgDB::getDirectoryContents(dataPath);
	for each (std::string dir in dirNames)
	{
		if (dir.find(".") != std::string::npos)
			continue;
		std::string osgbFile = dataPath + dir + "\" + dir + ".osgb";
		g->addChild(osgDB::readNodeFile(osgbFile));
	}
 

 

最后

以上就是兴奋衬衫为你收集整理的【OSG】读取osgb倾斜数据的全部内容,希望文章能够帮你解决【OSG】读取osgb倾斜数据所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(72)

评论列表共有 0 条评论

立即
投稿
返回
顶部