Subversion Repositories gelsvn

Rev

Rev 448 | 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_load.h
-
 
9
 * @brief Load from X3D
-
 
10
 */
-
 
11
 
1
#ifndef __HMESH_X3DLOAD_H__
12
#ifndef __HMESH_X3DLOAD_H__
2
#define __HMESH_X3DLOAD_H__
13
#define __HMESH_X3DLOAD_H__
3
 
14
 
4
#include <string>
15
#include <string>
5
 
16
 
6
// This is just an example of a loader
-
 
7
#include "HMesh/Manifold.h"
-
 
8
 
-
 
9
 
-
 
10
namespace HMesh
17
namespace HMesh
11
{
18
{
-
 
19
    class Manifold;
12
	/// Load a mesh from an X3D file. It handles arbitrary polygons.
20
    /// Load a mesh from an X3D file. It handles arbitrary polygons.
13
	bool x3d_load(const std::string& filename, HMesh::Manifold&);
21
    bool x3d_load(const std::string& filename, Manifold& m);
14
}
22
}
15
#endif
23
#endif
16
 
24