Subversion Repositories gelsvn

Rev

Rev 79 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 79 Rev 510
Line 1... Line 1...
1
#ifndef __GEOMETRY_TRIMESH_FUNCTIONS_H__
1
#ifndef __GEOMETRY_TRIMESH_FUNCTIONS_H__
2
#define __GEOMETRY_TRIMESH_FUNCTIONS_H__
2
#define __GEOMETRY_TRIMESH_FUNCTIONS_H__
3
 
3
 
-
 
4
#include <string>
-
 
5
#include <vector>
4
#include "TriMesh.h"
6
#include "TriMesh.h"
5
 
7
 
6
namespace Geometry
8
namespace Geometry
7
{
9
{
8
	/// Load a TriMesh from an OBJ file
10
	/// Load a TriMesh from an OBJ file
9
	void obj_load(const std::string &filename, TriMesh &mesh);
11
	void obj_load(const std::string &filename, TriMesh &mesh);
-
 
12
 
-
 
13
  /// Load materials from an MRL file
-
 
14
  void mtl_load(const std::string& filename, std::vector<Material>& materials);
10
}
15
}
11
 
16
 
12
#endif
17
#endif