blendequation.cpp
来自「最新osg包」· C++ 代码 · 共 62 行
CPP
62 行
/********************************************************************** * * FILE: BlendEquation.cpp * * DESCRIPTION: Read/Write osg::BlendEquation in binary format to disk. * * CREATED BY: Auto generated by iveGenerated * and later modified by Rune Schmidt Jensen. * * HISTORY: Created 21.3.2003 * * Copyright 2003 VR-C **********************************************************************/#include "Exception.h"#include "BlendEquation.h"#include "Object.h"using namespace ive;void BlendEquation::write(DataOutputStream* out){ // Write BlendEquation's identification. out->writeInt(IVEBLENDEQUATION); // If the osg class is inherited by any other class we should also write this to file. osg::Object* obj = dynamic_cast<osg::Object*>(this); if(obj){ ((ive::Object*)(obj))->write(out); } else throw Exception("BlendEquation::write(): Could not cast this osg::BlendEquation to an osg::Object."); // Write BlendEquation's properties. // Write source out->writeInt(getEquation());}void BlendEquation::read(DataInputStream* in){ // Peek on BlendEquation's identification. int id = in->peekInt(); if(id == IVEBLENDEQUATION){ // Read BlendEquation's identification. id = in->readInt(); // If the osg class is inherited by any other class we should also read this from file. osg::Object* obj = dynamic_cast<osg::Object*>(this); if(obj){ ((ive::Object*)(obj))->read(in); } else throw Exception("BlendEquation::read(): Could not cast this osg::BlendEquation to an osg::Object."); // Read BlendEquation's properties // Read source setEquation(osg::BlendEquation::Equation(in->readInt())); } else{ throw Exception("BlendEquation::read(): Expected BlendEquation identification."); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?