Revision 752,
508 bytes
checked in by mattausch, 19 years ago
(diff) |
after rendering workshop submissioin
x3dparser can use def - use constructs
implemented improved evaluation (samples are only stored in leaves, only propagate pvs size)
|
-
Property svn:executable set to
*
|
Rev | Line | |
---|
[749] | 1 | #ifndef __PLYPARSER_H
|
---|
| 2 | #define __PLYPARSER_H
|
---|
| 3 |
|
---|
| 4 | #include "Parser.h"
|
---|
| 5 | #include "Containers.h"
|
---|
| 6 |
|
---|
| 7 | class ViewCellsManager;
|
---|
| 8 |
|
---|
| 9 | class PlyParser : public Parser
|
---|
| 10 | {
|
---|
| 11 | public:
|
---|
| 12 | PlyParser():Parser() {}
|
---|
| 13 |
|
---|
| 14 | bool ParseFile(const string filename,
|
---|
| 15 | SceneGraphNode **root,
|
---|
| 16 | const bool loadPolygonsAsMeshes = false);
|
---|
| 17 |
|
---|
| 18 | bool ParseFile(const string filename, ViewCellsManager &viewCells) { return false; }
|
---|
[752] | 19 |
|
---|
| 20 | bool
|
---|
| 21 | ParseSingleFile(const string filename,
|
---|
| 22 | SceneGraphNode *root);
|
---|
| 23 |
|
---|
[749] | 24 | };
|
---|
| 25 |
|
---|
| 26 |
|
---|
| 27 | #endif
|
---|
Note: See
TracBrowser
for help on using the repository browser.