Subversion Repositories gelsvn

Rev

Rev 630 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 630 Rev 631
Line 7... Line 7...
7
/**
7
/**
8
@file Walker.h
8
@file Walker.h
9
 Contains class for walking a mesh.
9
 Contains class for walking a mesh.
10
 */
10
 */
11
 
11
 
12
#ifndef __HMESH_HALFEDGEWALKER_H__
-
 
13
#define __HMESH_HALFEDGEWALKER_H__
12
#pragma once
14
 
13
 
15
#include "ConnectivityKernel.h"
14
#include "Manifold.h"
16
 
15
 
17
namespace HMesh
16
namespace HMesh
18
{
17
{
19
    /** Class for traversing the entities of a HMesh. This class can work as 
18
    /** Class for traversing the entities of a HMesh. This class can work as 
20
     both a vertex and a face circulator but also move in other ways. It is,
19
     both a vertex and a face circulator but also move in other ways. It is,
Line 116... Line 115...
116
        ck = w.ck;
115
        ck = w.ck;
117
        last = w.last;
116
        last = w.last;
118
        return *this;
117
        return *this;
119
    }
118
    }
120
 
119
    
-
 
120
 
-
 
121
 
121
}
122
}
122
 
123
 
123
#endif
-