source: GTP/branches/IllumWPdeliver2008dec/IlluminationWP/demos/Standalone/PathMap [DirectX]/WsubMesh.h @ 3255

Revision 3255, 553 bytes checked in by szirmay, 15 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.