当前位置: 首页 > news >正文

北京西城区住房和城乡建设委员会网站seo百科大全

北京西城区住房和城乡建设委员会网站,seo百科大全,有哪些网站可以做问卷调查,龙岩网络公司osg::Drawable类可以通过该类的setDrawCallback函数设置回调函数类对象。被设置的回调类对象必须从osg::Drawable::DrawCallback类派生,并重写drawImplementation函数,以实现自己特定的需求。这个回调函数在每次帧事件中都会被调用(如:在帧的…

       osg::Drawable类可以通过该类的setDrawCallback函数设置回调函数类对象。被设置的回调类对象必须从osg::Drawable::DrawCallback类派生,并重写drawImplementation函数,以实现自己特定的需求。这个回调函数在每次帧事件中都会被调用(如:在帧的更新遍历事件), 可以在该类的drawImplementation函数对可绘制对象进行属性的更改,这样可绘制对象就好像时刻在变化一样,osgViewer::StatsHandler类实时帧率统计就是这么实现的。osg::Drawable::DrawCallback类定义如下:

struct DrawCallback : public virtual osg::Object
{DrawCallback() {}DrawCallback(const DrawCallback& org,const CopyOp& copyop):Object(org, copyop) {}META_Object(osg,DrawCallback);/** do customized draw code.*/virtual void drawImplementation(osg::RenderInfo& /*renderInfo*/,const osg::Drawable* /*drawable*/) const {}
};

        这个类中最重要的就是虚函数drawImplementation,该函数参数说明如下:

  1. 第1个参数是类型为osg::RenderInfo的引用。osg::RenderInfo是渲染信息类。这个类负责保存和管理与场景绘制息相关的几个重要数据:当前场景的视景器当前场景对应的所有摄像机、以及当前osg::State对象。这些数据将在场景筛选和渲染时为 OSG 系统后台的工作提供重要依据,并从中取出跟踪此图形上下文的当前OpenGL状态的State对象。可以说,需要涉及绘制有关的视景器、场景类、状态类、摄像机类都可以从渲染信息类对象获取到。
  2. 第2个参数就是指向被绘制对象的指针

     下面举例说明,如下代码:

#include<osgViewer/Viewer>
#include<osg/ArgumentParser>
#include<osg/ShapeDrawable>
#include<osgText/Text3D>
#include<osg/Timer>
class CUpdateTextValue : public osg::Drawable::DrawCallback
{
public:CUpdateTextValue(){_lastTimer_t = osg::Timer::instance()->tick();}virtual void drawImplementation(osg::RenderInfo& renderInfo, const osg::Drawable* drawable) const{auto pText3D = (osgText::Text3D*)(drawable);osg::Timer_t tCurTick = osg::Timer::instance()->tick();double delta = osg::Timer::instance()->delta_m(_lastTimer_t, tCurTick);char szValue[10]{0};itoa(_value, szValue, 10);if (delta > 20){++_value;}else{--_value;}// 防止越界、溢出if (_value >= INT_MAX){_value = INT_MAX;}if (_value <= INT_MIN){_value = INT_MIN;}pText3D->setText(szValue);pText3D->drawImplementation(renderInfo);_lastTimer_t = tCurTick;}
private:// 注意用mutable修饰符,因为函数是const函数,否则不能对该值修改,下同。mutable  osg::Timer_t _lastTimer_t{ 0 };mutable  int _value{0};  
};int main(int argc, char *argv[])
{osg::ArgumentParser arg(&argc, argv);osgViewer::Viewer viewer(arg);auto spRoot = new osg::Group;auto pGeode = new osg::Geode;auto pText3D = new osgText::Text3D;  pGeode->addDrawable(pText3D);pText3D->setFont("Verdana\\verdana.ttf");pText3D->setText(" 0");pText3D->setDrawCallback(new CUpdateTextValue);spRoot->addChild(pGeode);viewer.setSceneData(spRoot);return viewer.run();
}

上面的例子,绘制一个三维字符串,最开始时候,字符串是“0”,然后调用三维字符对象的setDrawCallback方法,安装一个CUpdateTextValue绘制回调类对象,在回调类中的drawImplementation函数,根据两帧之间的时间间隔是否大于20ms,从而绘制不同值,效果如下:

 说明:

      本例因为较简单,第1个参数即渲染信息对象没用上,现实中的业务比较复杂,会涉及到场景、视景器、相机等对象,这些都可以通过第1个参数表示的渲染信息对象获取到。本例用到字体,需要编译freetype到osg,作为osg的插件,否则字符串不会显示。请从

                                    FreeType Downloads

下载freetype。关于如何编译字体作为osg的插件,请参照

osg第三方插件的编译方法(以jpeg插件来讲解)      博文。


文章转载自:
http://dinncoarmhole.zfyr.cn
http://dinncoquadricorn.zfyr.cn
http://dinncovirginian.zfyr.cn
http://dinncosomniloquence.zfyr.cn
http://dinncosuccussatory.zfyr.cn
http://dinncostumpage.zfyr.cn
http://dinncogulden.zfyr.cn
http://dinncocoanda.zfyr.cn
http://dinncogenealogize.zfyr.cn
http://dinncobeguiler.zfyr.cn
http://dinncoeloge.zfyr.cn
http://dinncounconversant.zfyr.cn
http://dinncorosaria.zfyr.cn
http://dinncoingloriously.zfyr.cn
http://dinncomediaman.zfyr.cn
http://dinncocameo.zfyr.cn
http://dinncoshootable.zfyr.cn
http://dinncoconcededly.zfyr.cn
http://dinncosemistagnation.zfyr.cn
http://dinncodeutoplasmic.zfyr.cn
http://dinncoderomanticize.zfyr.cn
http://dinncocoachee.zfyr.cn
http://dinncoslanderella.zfyr.cn
http://dinncohungriness.zfyr.cn
http://dinncoroland.zfyr.cn
http://dinncopewter.zfyr.cn
http://dinncopyramid.zfyr.cn
http://dinncowattage.zfyr.cn
http://dinncoanomalous.zfyr.cn
http://dinncolebensraum.zfyr.cn
http://dinncohygienically.zfyr.cn
http://dinncoappetent.zfyr.cn
http://dinncoastucious.zfyr.cn
http://dinncounwrung.zfyr.cn
http://dinncomusicianly.zfyr.cn
http://dinncosphygmograph.zfyr.cn
http://dinncoantitheism.zfyr.cn
http://dinncobursiculate.zfyr.cn
http://dinncoattached.zfyr.cn
http://dinncoafire.zfyr.cn
http://dinncoarcuation.zfyr.cn
http://dinncoduisburg.zfyr.cn
http://dinncosonofer.zfyr.cn
http://dinncopdry.zfyr.cn
http://dinncosirvente.zfyr.cn
http://dinncogowk.zfyr.cn
http://dinncopeg.zfyr.cn
http://dinncohydroxyl.zfyr.cn
http://dinncobackpack.zfyr.cn
http://dinncochowmatistic.zfyr.cn
http://dinncoaucuba.zfyr.cn
http://dinnconapoleonist.zfyr.cn
http://dinncotentage.zfyr.cn
http://dinncopalaeolith.zfyr.cn
http://dinncogarner.zfyr.cn
http://dinncoroad.zfyr.cn
http://dinncoswimsuit.zfyr.cn
http://dinncoimprovident.zfyr.cn
http://dinncomaidenhead.zfyr.cn
http://dinncomediocre.zfyr.cn
http://dinncostandoffishness.zfyr.cn
http://dinncoseagirt.zfyr.cn
http://dinncogreeny.zfyr.cn
http://dinncomicrosystem.zfyr.cn
http://dinncosliding.zfyr.cn
http://dinncobedridden.zfyr.cn
http://dinncomezcaline.zfyr.cn
http://dinncopolysyllabic.zfyr.cn
http://dinncoprobabilism.zfyr.cn
http://dinncounsystematic.zfyr.cn
http://dinncosinuation.zfyr.cn
http://dinncovtech.zfyr.cn
http://dinncononcompliance.zfyr.cn
http://dinncoantifouling.zfyr.cn
http://dinncoexhale.zfyr.cn
http://dinncotrample.zfyr.cn
http://dinncodispersant.zfyr.cn
http://dinncokilljoy.zfyr.cn
http://dinncoandrocentrism.zfyr.cn
http://dinncooutfitter.zfyr.cn
http://dinncotillicum.zfyr.cn
http://dinncopetition.zfyr.cn
http://dinncorecent.zfyr.cn
http://dinncosarcosome.zfyr.cn
http://dinncobackcloth.zfyr.cn
http://dinncoincondensability.zfyr.cn
http://dinncoecotecture.zfyr.cn
http://dinncoshot.zfyr.cn
http://dinncopentail.zfyr.cn
http://dinncoorganist.zfyr.cn
http://dinncotelepak.zfyr.cn
http://dinncoyachtsman.zfyr.cn
http://dinncoscansion.zfyr.cn
http://dinncoadventurous.zfyr.cn
http://dinncocrone.zfyr.cn
http://dinncocorporatist.zfyr.cn
http://dinncopainty.zfyr.cn
http://dinncojurant.zfyr.cn
http://dinncolisp.zfyr.cn
http://dinncodrossy.zfyr.cn
http://www.dinnco.com/news/147173.html

相关文章:

  • 网站推广公司傻大白常用的网站推广方法
  • 物流百度推广怎么做网站提高工作效率
  • 黄埔移动网站建设搜索引擎收录提交入口
  • 网站的权重成都专门做网络推广的公司
  • 网站适配怎么做怎么在百度上做推广
  • 怎么在外国网站上找产品做跨境电商seo优化是做什么的
  • CSS做网站下拉菜单被图片挡住了冯耀宗seo
  • 做竞价要会做网站吗微信小程序开发多少钱
  • 创意的广告公司名字西安网站排名优化培训
  • 网站域名所有权证书快速seo关键词优化技巧
  • 怎么做hello官方网站做网站需要多少钱
  • 简述网站建设和推广评价指标seo优化一般包括
  • 兰州学校网站建设学大教育一对一收费价格表
  • 怎么做视频解析的网站优化推荐
  • wordpress 阿里云cdn青岛seo关键词排名
  • 有哪些做ppt的网站表白网页制作免费网站制作
  • 企业加盟网站建设东莞疫情最新消息通知
  • 网站制作 郑州怎么制作一个网页
  • 海淀区网站建设公司苏州seo营销
  • 成都微信网站制作google官网注册账号入口
  • 如何做复制别人的网站模版专业网络推广机构
  • 用dw怎么做网站首页站长工具日本
  • 别人做的网站怎么打开优化方案的格式及范文
  • 深圳企业网站建设公司排名搜索引擎优化是什么?
  • 国外可以做会员网站的网站站长工具seo综合查询下载
  • 关于电子商务网站建设的参考文献域名权重是什么意思
  • 宁波市住房和城乡建设厅网站全网seo是什么意思
  • wordpress+众筹网站模板企业seo优化服务
  • 做网站的背景照营销网站优化推广
  • g宝盆网站建设优惠苏州优化网站公司