?? readerwriterdae.h
字號:
#ifndef _READERWRITERDAE_H_#define _READERWRITERDAE_H_#include <OpenThreads/ReentrantMutex>///////////////////////////////////////////////////////////////////////////// OSG reader/writer plugin for the COLLADA 1.4.x ".dae" format.// See http://collada.org/ and http://khronos.org/collada/#define EXTENSION_NAME "dae"class ReaderWriterDAE : public osgDB::ReaderWriter{public: ReaderWriterDAE() { supportsExtension(EXTENSION_NAME,"COLLADA 1.4.x DAE format"); } const char* className() const { return "COLLADA 1.4.x DAE reader/writer"; } ReadResult readNode(const std::string&, const Options*) const; WriteResult writeNode(const osg::Node&, const std::string&, const Options*) const; static std::string ConvertFilePathToColladaCompatibleURI(const std::string& FilePath); private: mutable OpenThreads::ReentrantMutex _serializerMutex;};///////////////////////////////////////////////////////////////////////////#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -