Subversion Repositories gelsvn

Rev

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

Rev Author Line No. Line
448 jab 1
#ifndef __HMESH_OBJLOAD__H__
2
#define __HMESH_OBJLOAD__H__
149 jab 3
 
4
#include "HMesh/Manifold.h"
5
 
150 jab 6
namespace HMesh
149 jab 7
{
362 jab 8
	/** Load an Wavefront OBJ file. This is just a simple frontend for the 
9
		Geometry::obj_load function which loads OBJ files into triangle meshes. 
10
		Consequently, quads are unfortunately converted to triangles when this
11
		loader is used. */
149 jab 12
	bool obj_load(const std::string&, HMesh::Manifold& m);
13
}
14
#endif