GEL
2
GEL is a library for Geometry and Linear Algebra
|
00001 #ifndef __GEOMETRY_PLYLOAD_H_ 00002 #define __GEOMETRY_PLYLOAD_H_ 00003 00004 00005 /* 00006 * ply_load.h 00007 * GEL 00008 * 00009 * Created by J. Andreas Brentzen on 08/08/07. 00010 * Copyright 2007 __MyCompanyName__. All rights reserved. 00011 * 00012 */ 00013 00014 #include "Geometry/TriMesh.h" 00015 00016 namespace Geometry 00017 { 00020 void ply_load(const std::string& fn, Geometry::TriMesh& mesh); 00021 } 00022 00023 #endif