source: GTP/trunk/App/Demos/Vis/FriendlyCulling/src/ObjExporter.h @ 3274

Revision 3274, 391 bytes checked in by mattausch, 15 years ago (diff)
Line 
1#ifndef __OBJEXPORTER_H
2#define __OBJEXPORTER_H
3
4#include "common.h"
5#include "Bvh.h"
6#include <map>
7
8
9namespace CHCDemoEngine
10{
11
12/** Class for exporting bvh to Jiris format
13*/
14class ObjExporter
15{
16public:
17
18        bool Export(const std::string &filename, Bvh *bvh);
19
20
21public:
22
23        int WriteGeometry(Geometry *geom, std::ofstream &ostream, Transform3 *trafo);
24};
25
26
27}
28
29#endif
Note: See TracBrowser for help on using the repository browser.