Subversion Repositories gelsvn

Rev

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

Rev Author Line No. Line
448 jab 1
#ifndef __HMESH_OFF_SAVE_H__
2
#define __HMESH_OFF_SAVE_H__
3
 
433 jab 4
/*
5
 *  off_save.h
6
 *  GEL
7
 *
8
 *  Created by J. Andreas Bærentzen on 17/02/09.
9
 *  Copyright 2009 __MyCompanyName__. All rights reserved.
10
 *
11
 */
12
 
13
#include "HMesh/Manifold.h"
14
 
15
namespace HMesh
16
{
17
	/** Save in Wavefront OBJ format. */
18
	bool off_save(const std::string&, HMesh::Manifold& m);
19
 
20
}
448 jab 21
 
22
#endif