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 x3d_save.h
-
 
9
 * @brief Save to X3D
-
 
10
 */
1
#ifndef __HMESH_X3D_SAVE_H__
11
#ifndef __HMESH_X3D_SAVE_H__
2
#define __HMESH_X3D_SAVE_H__
12
#define __HMESH_X3D_SAVE_H__
3
 
13
 
4
#include "HMesh/Manifold.h"
14
#include <string>
5
 
15
 
6
namespace HMesh
16
namespace HMesh
7
{
17
{
-
 
18
    class Manifold;
8
	/// Save mesh to x3d file.
19
    /// Save mesh to x3d file.
9
	bool x3d_save(const std::string&, HMesh::Manifold& m);
20
    bool x3d_save(const std::string&, Manifold& m);
10
 
-
 
11
}
21
}
12
#endif
22
#endif
13
 
23