Rev 467 | Rev 512 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
/*
* off_load.h
* GEL
*
* Created by J. Andreas Bærentzen on 16/02/09.
* Copyright 2009 __MyCompanyName__. All rights reserved.
*
*/
#ifndef __HMESH_OFF_LOAD_HMESH__
#define __HMESH_OFF_LOAD_HMESH__
#include <string>
namespace HMesh
{
class Manifold;
/** Load an OFF file (Object File Format). So far, this loader is mostly ensured to load files
from the Princeton Shape Benchmark. */
bool off_load(const std::string&, Manifold& m);
}
#endif __HMESH_OFF_LOAD_HMESH__