vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MaterialDesc.h
Go to the documentation of this file.
1 #ifndef MaterialDesc_h
2 #define MaterialDesc_h
3 
4 #include "PhysXObject.h"
5 #include <vrecko/World.h>
6 #include <string>
7 
8 using namespace vrecko;
9 namespace vrecko
10 {
12  {
13  private:
14  NxMaterialDesc _materialDesc;
15  NxMaterialIndex _matIndex;
16  std::string _name;
17 
18  public:
19  NxMaterialIndex MatIndex() const { return _matIndex; }
20  std::string Name() const { return _name; }
21  void Create(NxScene* pScene);
22  bool loadXMLParameters(XERCES_CPP_NAMESPACE_QUALIFIER DOMNode *pParametersNode);
23  };
24 }
25 
26 
27 #endif