source: GTP/trunk/App/Demos/Illum/pathmap/WsubMesh.h @ 2197

Revision 2197, 553 bytes checked in by szirmay, 17 years ago (diff)
Line 
1// WsubMesh.h: interface for the WsubMesh class.
2//
3//////////////////////////////////////////////////////////////////////
4
5#pragma once
6#include "Wsimplex.h"
7#include "Vector.hpp"
8class DelaunayMesh;
9
10class WsubMesh 
11{
12        friend class DelaunayMesh;
13public:
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;
22private:
23        ::std::vector<Wsimplex*> incomplete;
24        ::std::vector<Wsimplex*> insiders;
25
26};
27
Note: See TracBrowser for help on using the repository browser.