Rev 467 | Rev 512 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
#ifndef __HMESH_OFF_SAVE_H__
#define __HMESH_OFF_SAVE_H__
/*
* off_save.h
* GEL
*
* Created by J. Andreas Bærentzen on 17/02/09.
* Copyright 2009 __MyCompanyName__. All rights reserved.
*
*/
#include <string>
namespace HMesh
{
class Manifold;
/** Save in Wavefront OBJ format. */
bool off_save(const std::string&, HMesh::Manifold& m);
}
#endif