source: GTP/trunk/Lib/Vis/Preprocessing/src/PlyParser.h @ 1379

Revision 1379, 586 bytes checked in by mattausch, 18 years ago (diff)

fixed sah for objeect partition
loader for single triangles also for x3d

  • Property svn:executable set to *
RevLine 
[749]1#ifndef __PLYPARSER_H
2#define __PLYPARSER_H
3
4#include "Parser.h"
5#include "Containers.h"
6
[863]7namespace GtpVisibilityPreprocessor {
[860]8
[749]9class ViewCellsManager;
10
11class PlyParser : public Parser
12{
13public:
14  PlyParser():Parser() {}
15 
16  bool ParseFile(const string filename,
[1344]17                                 SceneGraphNode *root,
[1379]18                                 const bool loadMeshes = true,
[1281]19                                 vector<FaceParentInfo> *parents = NULL);
[749]20
21  bool ParseFile(const string filename, ViewCellsManager &viewCells) { return false; }
[752]22
23  bool
24  ParseSingleFile(const string filename,
25                                  SceneGraphNode *root);
26       
[749]27};
28
[860]29}
[749]30
31#endif
Note: See TracBrowser for help on using the repository browser.