Subversion Repositories gelsvn

Rev

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

Rev Author Line No. Line
433 jab 1
/*
2
 *  off_load.h
3
 *  GEL
4
 *
5
 *  Created by J. Andreas Bærentzen on 16/02/09.
6
 *  Copyright 2009 __MyCompanyName__. All rights reserved.
7
 *
8
 */
9
 
448 jab 10
#ifndef __HMESH_OFF_LOAD_HMESH__
11
#define __HMESH_OFF_LOAD_HMESH__
433 jab 12
 
13
#include "HMesh/Manifold.h"
14
 
15
namespace HMesh
16
{
17
	/** Load an OFF file (Object File Format). So far, this loader is mostly ensured to load files 
18
	 from the Princeton Shape Benchmark.  */
19
	bool off_load(const std::string&, HMesh::Manifold& m);
20
}
21
 
22
#endif