?? mesh.cpp
字號(hào):
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "OgrePythonLink.h"
using namespace boost::python;
using namespace Ogre;
void exportMesh()
{
class_<Mesh>("Mesh", init<std::string>())
.def("getNumSubMeshes", &Mesh::getNumSubMeshes)
.def("getSubMesh", &Mesh::getSubMesh, rir())
.def("getName", &Mesh::getName, ccr())
.def("load", &Mesh::load)
.def("unload", &Mesh::unload)
;
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -