Subversion Repositories gelsvn

Rev

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

Rev Author Line No. Line
149 jab 1
#ifndef __HMESHUTIL_X3DLOAD_H__
2
#define __HMESHUTIL_X3DLOAD_H__
3
 
4
#include <string>
5
 
6
// This is just an example of a loader
7
#include "HMesh/Manifold.h"
8
 
9
 
150 jab 10
namespace HMesh
149 jab 11
{
362 jab 12
	/// Load a mesh from an X3D file. It handles arbitrary polygons.
149 jab 13
	bool x3d_load(const std::string& filename, HMesh::Manifold&);
14
}
15
#endif