Subversion Repositories gelsvn

Rev

Rev 371 | Rev 595 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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