Subversion Repositories gelsvn

Rev

Rev 595 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 595 Rev 630
1
/* ----------------------------------------------------------------------- *
1
/* ----------------------------------------------------------------------- *
2
 * This file is part of GEL, http://www.imm.dtu.dk/GEL
2
 * This file is part of GEL, http://www.imm.dtu.dk/GEL
3
 * Copyright (C) the authors and DTU Informatics
3
 * Copyright (C) the authors and DTU Informatics
4
 * For license and list of authors, see ../../doc/intro.pdf
4
 * For license and list of authors, see ../../doc/intro.pdf
5
 * ----------------------------------------------------------------------- */
5
 * ----------------------------------------------------------------------- */
6
 
6
 
7
/**
7
/**
8
 * @file HMesh/load.h
8
 * @file HMesh/load.h
9
 * @brief Load a Manifold from various types of files.
9
 * @brief Load a Manifold from various types of files.
10
 */
10
 */
11
 
11
 
12
 
12
 
13
 
13
 
14
#ifndef __HMESH_LOAD__H__
14
#ifndef __HMESH_LOAD__H__
15
#define __HMESH_LOAD__H__
15
#define __HMESH_LOAD__H__
16
 
16
 
17
#include <string>
17
#include <string>
18
 
18
 
19
namespace HMesh
19
namespace HMesh
20
{
20
{
21
    class Manifold;
21
    class Manifold;
22
 
22
 
23
    /// Load a geometry file. This could be a PLY, OBJ, X3D, or OFF file
23
    /// Load a geometry file. This could be a PLY, OBJ, X3D, or OFF file
24
    bool load(const std::string&, Manifold& m);
24
    bool load(const std::string&, Manifold& m);
25
}
25
}
26
 
26
 
27
#endif
27
#endif
28
 
28
 
29

Generated by GNU Enscript 1.6.6.
29

Generated by GNU Enscript 1.6.6.
30
 
30
 
31
 
31
 
32
 
32