osgEarth指北针

时间:2024-04-11 20:48:09

COMPASS指北针用于osgEarth

想寻找一个demo直接改一下加进工程,结果发现例子好像都不太一样,总是有几个类缺乏,不知道是限制还是什么原因。比如https://blog.csdn.net/zbf00138/article/details/52288598中的

compass->setPlate(SELibrary::getInstance()->createCompassPart(m_strRootPath + “\images\compass_plate.png”, 1.5f, -1.0f)); //圆盘图片
compass->setNeedle(SELibrary::getInstance()->createCompassPart(m_strRootPath+ “\images\compass_needle.png”, 1.5f, 0.0f));//指针图片
中的SELibrary都不是osgEarth自带的
OSGEarth论坛上有个人的回答是下面这两行代码:
compass->setPlate(createCompassPart(“compass_plate.png”, 1.5f, -1.0f));
compass->setNeedle(createCompassPart(“compass_needle.png”, 1.5f, 0.0f));
现在为了得到积分下载一个可能有关的资源,写了这篇博客,之后再看能否应用吧。
按理来说最后效果应该是要做成下面这两幅图。
osgEarth指北针osgEarth指北针