Blender V2.61 - r43446

BSP_PlyLoader.h

Go to the documentation of this file.
00001 
00028 #ifndef BSP_PlyLoader_h
00029 #define BSP_PlyLoader_h
00030 
00031 #include "MEM_SmartPtr.h"
00032 #include "BSP_TMesh.h"
00033 
00034 class BSP_PlyLoader {
00035 public :
00036 
00037     static
00038         MEM_SmartPtr<BSP_TMesh>
00039     NewMeshFromFile(
00040         char * file_name,
00041         MT_Vector3 &min,
00042         MT_Vector3 &max
00043     );
00044 
00045 
00046 private :
00047     
00048     // unimplemented - not for instantiation.
00049 
00050     BSP_PlyLoader(
00051     );
00052 
00053     ~BSP_PlyLoader(
00054     );
00055 };
00056 
00057 
00058 
00059 #endif
00060