source: GTP/trunk/Lib/Vis/Preprocessing/src/Polytope.cpp @ 863

Revision 863, 571 bytes checked in by mattausch, 18 years ago (diff)

working on preprocessor integration
added iv stuff

Line 
1#include "Polytope.h"
2
3namespace GtpVisibilityPreprocessor {
4
5/************************************************
6 *         class Polyhedron implementation      *
7 ***********************************************/
8
9bool Polyhedron::IsBounded()
10{
11        return true;
12}
13
14/************************************************
15 *         class Polytope implementation        *
16 ***********************************************/
17
18Polytope::Polytope(const Polyhedron &boundedPoly)
19{
20}
21
22void Polytope::Split(Hyperplane *plane, Polytope *front, Polytope *back)
23{
24}
25
26}
Note: See TracBrowser for help on using the repository browser.