Subversion Repositories gelsvn

Rev

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

Rev Author Line No. Line
149 jab 1
#include "obj_load.h"
2
#include "Geometry/obj_load.h"
3
#include "HMesh/Manifold.h"
4
#include "build_manifold.h"
5
 
6
 
7
using namespace std;
8
using namespace CGLA;
9
using namespace HMesh;
10
using namespace Geometry;
11
 
150 jab 12
namespace HMesh
149 jab 13
{
14
		bool obj_load(const std::string& filename, HMesh::Manifold& m)
15
		{
16
				TriMesh mesh;
17
				Geometry::obj_load(filename, mesh);
362 jab 18
				build_manifold(m, mesh);
149 jab 19
				return true;
20
		}
21
}