Subversion Repositories gelsvn

Rev

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

Rev Author Line No. Line
383 jab 1
/*
2
 *  load.h
3
 *  GEL
4
 *
5
 *  Created by J. Andreas Bærentzen on 17/08/08.
6
 *  Copyright 2008 __MyCompanyName__. All rights reserved.
7
 *
8
 */
9
 
448 jab 10
#ifndef __HMESH_LOAD__H__
11
#define __HMESH_LOAD__H__
383 jab 12
 
13
#include "HMesh/Manifold.h"
14
 
15
namespace HMesh
16
{
433 jab 17
	/** Load a geometry file. This could be a PLY, OBJ, X3D, or OFF file */
383 jab 18
	bool load(const std::string&, HMesh::Manifold& m);
19
}
20
#endif
21
 
22