Subversion Repositories gelsvn

Rev

Rev 440 | Rev 595 | Go to most recent revision | Details | Compare with Previous | 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
 
492 jrf 13
#include <string>
440 jab 14
#include "TriMesh.h"
15
 
16
namespace Geometry
17
{
18
	/// Load a TriMesh from a file. Loader chosen based on extension.
19
	void load(const std::string &filename, TriMesh &mesh);
20
}
21
 
22
 
23
 
24
#endif