Subversion Repositories gelsvn

Rev

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

/*
 *  load.h
 *  GEL
 *
 *  Created by J. Andreas Bærentzen on 17/08/08.
 *  Copyright 2008 __MyCompanyName__. All rights reserved.
 *
 */

#ifndef __HMESHUTIL_LOAD__H__
#define __HMESHUTIL_LOAD__H__

#include "HMesh/Manifold.h"

namespace HMesh
{
        /** Load an Wavefront OBJ file. This is just a simple frontend for the 
                Geometry::obj_load function which loads OBJ files into triangle meshes. 
                Consequently, quads are unfortunately converted to triangles when this
                loader is used. */
        bool load(const std::string&, HMesh::Manifold& m);
}
#endif