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 dual.h
8
 * @file dual.h
9
 * @brief Compute the dual of a mesh.
9
 * @brief Compute the dual of a mesh.
10
 */
10
 */
11
 
11
 
12
#ifndef __HMESH_DUAL_H__
12
#ifndef __HMESH_DUAL_H__
13
#define __HMESH_DUAL_H__
13
#define __HMESH_DUAL_H__
14
 
14
 
15
namespace HMesh
15
namespace HMesh
16
{
16
{
17
    class Manifold;
17
    class Manifold;
18
 
18
 
19
    void dual(Manifold& m);
19
    void dual(Manifold& m);
20
}
20
}
21
 
21
 
22
#endif
22
#endif
23
 
23
 
24

Generated by GNU Enscript 1.6.6.
24

Generated by GNU Enscript 1.6.6.
25
 
25
 
26
 
26
 
27
 
27