Revision 1221,
445 bytes
checked in by mattausch, 18 years ago
(diff) |
added intel ray tracing
|
Rev | Line | |
---|
[1221] | 1 | #ifndef __OBJPARSER_H
|
---|
| 2 | #define __OBJPARSER_H
|
---|
| 3 |
|
---|
| 4 | #include <string>
|
---|
| 5 | #include "Parser.h"
|
---|
| 6 |
|
---|
| 7 | namespace GtpVisibilityPreprocessor {
|
---|
| 8 |
|
---|
| 9 | class SceneGraphNode;
|
---|
| 10 |
|
---|
| 11 | class ObjParser: public Parser
|
---|
| 12 | {
|
---|
| 13 | public:
|
---|
| 14 |
|
---|
| 15 | ObjParser(): Parser() {}
|
---|
| 16 |
|
---|
| 17 | virtual bool ParseFile(const std::string filename,
|
---|
| 18 | SceneGraphNode **root,
|
---|
| 19 | const bool loadPolygonsAsMeshes = false,
|
---|
| 20 | vector<Intersectable *> *parents = NULL);
|
---|
| 21 |
|
---|
| 22 | };
|
---|
| 23 |
|
---|
| 24 | }
|
---|
| 25 |
|
---|
| 26 |
|
---|
| 27 | #endif
|
---|
Note: See
TracBrowser
for help on using the repository browser.