Subversion Repositories gelsvn

Rev

Rev 362 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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