Subversion Repositories gelsvn

Rev

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

#include "obj_load.h"
#include "Geometry/obj_load.h"
#include "HMesh/Manifold.h"
#include "build_manifold.h"


using namespace std;
using namespace CGLA;
using namespace HMesh;
using namespace Geometry;

namespace HMesh
{
                bool obj_load(const std::string& filename, HMesh::Manifold& m)
                {
                                TriMesh mesh;
                                Geometry::obj_load(filename, mesh);
                                build_manifold(m, mesh);
                                return true;
                }
}