Subversion Repositories gelsvn

Rev

Rev 448 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 448 Rev 595
Line -... Line 1...
-
 
1
/* ----------------------------------------------------------------------- *
-
 
2
 * This file is part of GEL, http://www.imm.dtu.dk/GEL
-
 
3
 * Copyright (C) the authors and DTU Informatics
-
 
4
 * For license and list of authors, see ../../doc/intro.pdf
-
 
5
 * ----------------------------------------------------------------------- */
-
 
6
 
-
 
7
/**
-
 
8
 * @file obj_save.h
-
 
9
 * @brief Save Manifold to OBJ.
-
 
10
 */
-
 
11
 
1
#ifndef __HMESH_OBJSAVE__H__
12
#ifndef __HMESH_OBJSAVE__H__
2
#define __HMESH_OBJSAVE__H__
13
#define __HMESH_OBJSAVE__H__
3
 
14
 
4
#include "HMesh/Manifold.h"
15
#include <string>
5
 
16
 
6
namespace HMesh
17
namespace HMesh
7
{
18
{
-
 
19
    class Manifold;
8
	/** Save in Wavefront OBJ format. */
20
    /// \brief Save in Wavefront OBJ format. 
9
	bool obj_save(const std::string&, HMesh::Manifold& m);
21
    bool obj_save(const std::string&, Manifold& m);
10
 
22
 
11
}
23
}
12
#endif
24
#endif
13
 
25