Subversion Repositories gelsvn

Rev

Rev 492 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
440 jab 1
/*
2
 *  load.h
3
 *  GEL
4
 *
5
 *  Created by J. Andreas Bærentzen on 08/03/09.
6
 *  Copyright 2009 __MyCompanyName__. All rights reserved.
7
 *
8
 */
9
 
10
#ifndef __GEOMETRY_LOAD_H__
11
#define __GEOMETRY_LOAD_H__
12
 
13
#include "TriMesh.h"
14
 
15
namespace Geometry
16
{
17
	/// Load a TriMesh from a file. Loader chosen based on extension.
18
	void load(const std::string &filename, TriMesh &mesh);
19
}
20
 
21
 
22
 
23
#endif