Subversion Repositories gelsvn

Rev

Go to most recent revision | Details | 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
 
4
#include "TriMesh.h"
5
 
6
namespace Geometry
7
{
8
	/// Load a TriMesh from an OBJ file
9
	void obj_load(const std::string &filename, TriMesh &mesh);
10
}
11
 
12
#endif