Line | |
---|
1 | // WsubMesh.h: interface for the WsubMesh class.
|
---|
2 | //
|
---|
3 | //////////////////////////////////////////////////////////////////////
|
---|
4 |
|
---|
5 | #pragma once
|
---|
6 | #include "Wsimplex.h"
|
---|
7 | #include "Vector.hpp"
|
---|
8 | class DelaunayMesh;
|
---|
9 |
|
---|
10 | class WsubMesh
|
---|
11 | {
|
---|
12 | friend class DelaunayMesh;
|
---|
13 | public:
|
---|
14 | void setInsider(Wsimplex* niro);
|
---|
15 | WsubMesh();
|
---|
16 | virtual ~WsubMesh();
|
---|
17 |
|
---|
18 | int isEmpty();
|
---|
19 | void merge(WsubMesh* other);
|
---|
20 | void add(Wsimplex* newbie);
|
---|
21 | ::std::vector<Wsimplex*> complete;
|
---|
22 | private:
|
---|
23 | ::std::vector<Wsimplex*> incomplete;
|
---|
24 | ::std::vector<Wsimplex*> insiders;
|
---|
25 |
|
---|
26 | };
|
---|
27 |
|
---|
Note: See
TracBrowser
for help on using the repository browser.