Subversion Repositories gelsvn

Rev

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

Rev 371 Rev 443
-
 
1
#ifndef __GEOMETRY_PLYLOAD_H_
-
 
2
#define __GEOMETRY_PLYLOAD_H_
-
 
3
 
-
 
4
 
1
/*
5
/*
2
 *  ply_load.h
6
 *  ply_load.h
3
 *  GEL
7
 *  GEL
4
 *
8
 *
5
 *  Created by J. Andreas Bærentzen on 08/08/07.
9
 *  Created by J. Andreas Bærentzen on 08/08/07.
6
 *  Copyright 2007 __MyCompanyName__. All rights reserved.
10
 *  Copyright 2007 __MyCompanyName__. All rights reserved.
7
 *
11
 *
8
 */
12
 */
9
 
13
 
10
#include "Geometry/TriMesh.h"
14
#include "Geometry/TriMesh.h"
11
 
15
 
12
namespace Geometry
16
namespace Geometry
13
{
17
{
14
	/** Load geometry from a ply file into a TriMesh. This is a very crude loader which only extracts the 
18
	/** Load geometry from a ply file into a TriMesh. This is a very crude loader which only extracts the 
15
		raw geometry. */
19
		raw geometry. */
16
	void ply_load(const std::string& fn, Geometry::TriMesh& mesh);
20
	void ply_load(const std::string& fn, Geometry::TriMesh& mesh);
17
}
-
 
18
 
21
}
-
 
22
 
-
 
23
#endif
-
 
24
 
19

Generated by GNU Enscript 1.6.6.
25

Generated by GNU Enscript 1.6.6.
20
 
26
 
21
 
27
 
22
 
28