Subversion Repositories gelsvn

Rev

Rev 443 | Go to most recent revision | Details | Last modification | View Log | RSS feed

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