Subversion Repositories gelsvn

Rev

Rev 79 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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