Subversion Repositories gelsvn

Rev

Rev 595 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 595 Rev 601
1
/* ----------------------------------------------------------------------- *
1
/* ----------------------------------------------------------------------- *
2
 * This file is part of GEL, http://www.imm.dtu.dk/GEL
2
 * This file is part of GEL, http://www.imm.dtu.dk/GEL
3
 * Copyright (C) the authors and DTU Informatics
3
 * Copyright (C) the authors and DTU Informatics
4
 * For license and list of authors, see ../../doc/intro.pdf
4
 * For license and list of authors, see ../../doc/intro.pdf
5
 * ----------------------------------------------------------------------- */
5
 * ----------------------------------------------------------------------- */
6
 
6
 
7
/**
7
/**
8
 * @file Geometry/ply_load.h
8
 * @file Geometry/ply_load.h
9
 * @brief Load files of the PLY format.
9
 * @brief Load files of the PLY format.
10
 */
10
 */
11
 
11
 
12
#ifndef __GEOMETRY_PLYLOAD_H_
12
#ifndef __GEOMETRY_PLYLOAD_H_
13
#define __GEOMETRY_PLYLOAD_H_
13
#define __GEOMETRY_PLYLOAD_H_
14
 
14
 
15
 
15
 
16
#include "Geometry/TriMesh.h"
16
#include "../Geometry/TriMesh.h"
17
 
17
 
18
namespace Geometry
18
namespace Geometry
19
{
19
{
20
	/** Load geometry from a ply file into a TriMesh. This is a very crude loader which only extracts the 
20
	/** Load geometry from a ply file into a TriMesh. This is a very crude loader which only extracts the 
21
		raw geometry. */
21
		raw geometry. */
22
	bool ply_load(const std::string& fn, Geometry::TriMesh& mesh);
22
	bool ply_load(const std::string& fn, Geometry::TriMesh& mesh);
23
}
23
}
24
 
24
 
25
#endif
25
#endif
26
 
26
 
27

Generated by GNU Enscript 1.6.6.
27

Generated by GNU Enscript 1.6.6.
28
 
28
 
29
 
29
 
30
 
30