osg::Sphere,osg::Texture2D,osg::StateSet,osg::TexEnv的使用

//By smells2 at Lab 2012-02-21
#include <osg/Group>
#include <osg/Geode>
#include <osg/ShapeDrawable>
#include <osg/Texture2D>
#include <osgViewer/Viewer>
#include <osgDB/readfile>

#include <osg/PositionAttitudeTransform>
#include <osg/TexEnv>
#include <osg/Texture2D>
#include <iostream>
int main()
{
	osg::ref_ptr<osg::Group> root = new osg::Group;
	osgViewer::Viewer myViewer;

	//Declear Sphere instance,the constructor takes an osg::vec3 to define
	//center and a float to define the radius.
	//Then we declear the ShapDrawable instance that derive from Drawable .We should 
	//initalize it with the shape we create above .
	osg::ref_ptr<osg::Geode> unitSphere = new osg::Geode;
	osg::ref_ptr<osg::Sphere> sphere = new osg::Sphere(osg::Vec3(0,0,0), 1.0f);
	osg::ref_ptr<osg::ShapeDrawable> shapeDrawable = new osg::ShapeDrawable(sphere.get());
	unitSphere->addDrawable(shapeDrawable.get());
	osg::ref_ptr<osg::PositionAttitudeTransform> sphereForm = new osg::PositionAttitudeTransform;
	sphereForm->setPosition(osg::Vec3(2.5,0.0,0.0));
	sphereForm->addChild(unitSphere.get());
	root->addChild(sphereForm.get());
	
	//load image from the file
	osg::ref_ptr<osg::Texture2D> earthTexture = new osg::Texture2D;
	earthTexture->setDataVariance(osg::Object::DYNAMIC);
	osg::ref_ptr<osg::Image> earthImage = osgDB::readImageFile("D:\\OSG\\osg2.9\\OpenSceneGraph2.9.5\\data\\Images\\land_shallow_topo_2048.jpg");
	if (!earthImage.get())
	{
		std::cout<<"load texture failed !"<<std::endl;
		return -1;
	}

	//assign the texture from the image file
	earthTexture->setImage(earthImage.get());

	//set the stateset for decal texture
	osg::ref_ptr<osg::TexEnv> texenv = new osg::TexEnv;
	osg::ref_ptr<osg::StateSet> stateset = new osg::StateSet;
	texenv->setMode(osg::TexEnv::DECAL);
	stateset->setTextureAttributeAndModes(0,earthTexture.get(),osg::StateAttribute::ON);
	stateset->setTextureAttribute(0,texenv.get());

	//realize
	root->setStateSet(stateset.get());
	myViewer.setSceneData(root.get());
	myViewer.realize();
	myViewer.run();
}

  • 1
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值