Subversion Repositories gelsvn

Rev

Rev 440 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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

Generated by GNU Enscript 1.6.6.
26

Generated by GNU Enscript 1.6.6.
26
 
27
 
27
 
28
 
28
 
29