UNIVERS  15.3
UNIVERS base processing software API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
u3d_model_import.hpp
1 /* u3d_model_import.hpp */
2 /* $Id: u3d_model_import.hpp,v 1.1 2008/05/13 12:19:18 sad Exp $ */
3 //---------------------------------------------------------------------
4 #ifndef __u3d_model_import_hpp
5 #define __u3d_model_import_hpp
6 
7 
8 using namespace std;
9 
10 
11 #include "u3d_model.hpp"
12 #include "u3d_model_defines.hpp"
13 
14 
15 
16 //==============================================================================
17 bool U3dModelImport(const char* file, U3dModel *&model, char *&mname, U3dProgress* prg=0x0);
18 
19 bool U3dModDataImport(const char* file,
20  U3dModAreaPos &modAreaPos,
21  U3dBox& modelBox,
22  U3dBoundInfoAr &bounds,
23  U3dBodyInfoAr &bodies,
24  char *&mname, std::string& model_description);
25 
26 bool U3dModDataValidator (U3dModAreaPos modAreaPos, U3dBox modelBox,
27  U3dBoundInfoAr bounds, U3dBodyInfoAr bodies);
28 //==============================================================================
29 
30 
31 
32 
33 
34 
35 
36 //---------------------------------------------------------------------
37 #endif /* u3d_model_import.hpp */
Definition: u3d_model_defines.hpp:20
Definition: u3d_box.hpp:24
Definition: u3d_model.hpp:15
Definition: u3d_progress.hpp:10