Subversion Repositories gelsvn

Rev

Rev 595 | Details | Compare with Previous | Last modification | View Log | RSS feed

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